Free cookie consent management tool by TermsFeed Policy Generator

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

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

#1508 refactoring: removed unused classes, unified calculation of profits and signals, implemented profit-evaluator.

File size: 3.1 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 GetSignals(interpreter.GetSymbolicExpressionTreeValues(tree, dataset, rows));
52    }
53
54    // Transforms an enumerable of real values to an enumerable of trading signals (buy(1) / hold(0) / sell(-1))
55    public static IEnumerable<double> GetSignals(IEnumerable<double> xs) {
56      // two iterations over xs
57      // 1) determine min / max to calculate the mid-range value
58      // 2) range is split into three thirds
59      double max = double.NegativeInfinity;
60      double min = double.PositiveInfinity;
61      foreach (var x in xs) {
62        if (x > max) max = x;
63        if (x < min) min = x;
64      }
65      if (double.IsInfinity(max) || double.IsNaN(max) || double.IsInfinity(min) || double.IsNaN(min))
66        return xs.Select(x => 0.0);
67
68      double range = (max - min);
69      double midRange = range / 2.0 + min;
70      double offset = range / 6.0;
71      return from x in xs
72             select x > midRange + offset ? 1.0 : x < midRange - offset ? -1.0 : 0.0;
73    }
74  }
75}
Note: See TracBrowser for help on using the repository browser.