Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.DataAnalysis.Trading/HeuristicLab.Problems.DataAnalysis.Trading/3.4/Symbolic/SymbolicTradingModel.cs @ 9743

Last change on this file since 9743 was 9743, checked in by gkronber, 11 years ago

#1508 updated classes in trading branch to work with current trunk version of HL.

File size: 2.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using System.Collections.Generic;
23using System.Linq;
24using HeuristicLab.Common;
25using HeuristicLab.Core;
26using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
28
29namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Trading {
30  /// <summary>
31  /// Represents a symbolic trading model
32  /// </summary>
33  [StorableClass]
34  [Item(Name = "SymbolicTradingModel", Description = "Represents a symbolic trading model.")]
35  public class SymbolicTradingModel : SymbolicDataAnalysisModel, ISymbolicTradingModel {
36
37    [StorableConstructor]
38    protected SymbolicTradingModel(bool deserializing) : base(deserializing) { }
39    protected SymbolicTradingModel(SymbolicTradingModel original, Cloner cloner)
40      : base(original, cloner) { }
41    public SymbolicTradingModel(ISymbolicExpressionTree tree, ISymbolicDataAnalysisExpressionTreeInterpreter interpreter)
42      : base(tree, interpreter, -10, 10) { }
43
44    public override IDeepCloneable Clone(Cloner cloner) {
45      return new SymbolicTradingModel(this, cloner);
46    }
47
48    public IEnumerable<double> GetSignals(Dataset dataset, IEnumerable<int> rows) {
49      ISymbolicDataAnalysisExpressionTreeInterpreter interpreter = Interpreter;
50      ISymbolicExpressionTree tree = SymbolicExpressionTree;
51      return from x in interpreter.GetSymbolicExpressionTreeValues(tree, dataset, rows)
52             select x > 0.66 ? 1.0 : x < 0.33 ? -1.0 : 0.0;
53    }
54  }
55}
Note: See TracBrowser for help on using the repository browser.