Free cookie consent management tool by TermsFeed Policy Generator

source: branches/sluengo/MACD.cs @ 9137

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