Free cookie consent management tool by TermsFeed Policy Generator

source: branches/sluengo/RSI.cs @ 9137

Last change on this file since 9137 was 9136, checked in by sluengo, 11 years ago
File size: 1.0 KB
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
6using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
7using HeuristicLab.Common;
8
9namespace HeuristicLab.Problems.TradeRules
10{
11    class RSI: Symbol
12    {
13        private const int minimumArity = 1;
14        private const int maximumArity = 1;
15
16        public override int MinimumArity
17        {
18            get { return minimumArity; }
19        }
20        public override int MaximumArity
21        {
22            get { return maximumArity; }
23        }
24
25        [StorableConstructor]
26        private RSI(bool deserializing) : base(deserializing) { }
27        private RSI(RSI original, Cloner cloner) : base(original, cloner) { }
28        public override IDeepCloneable Clone(Cloner cloner)
29        {
30            return new RSI(this, cloner);
31        }
32        public RSI() : base("RSI", "Symbol that represents the RSI indicator.") { }
33   
34    }
35}
Note: See TracBrowser for help on using the repository browser.