Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.GP.StructureIdentification.TimeSeries/ProfitEvaluator.cs @ 656

Last change on this file since 656 was 656, checked in by gkronber, 16 years ago

merged changesets r644:647 and r651:655 from the GpPluginsRefactoringBranch back into the trunk (#177)

File size: 3.9 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2008 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;
23using System.Collections.Generic;
24using System.Linq;
25using System.Text;
26using HeuristicLab.Core;
27using HeuristicLab.Data;
28using HeuristicLab.GP.StructureIdentification;
29
30namespace HeuristicLab.GP.TimeSeries {
31  public class ProfitEvaluator : GPEvaluatorBase {
32    protected DoubleData profit;
33    private int exchangeRateVarIndex;
34    private double transactionCost;
35    public override string Description {
36      get {
37        return @"TASK";
38      }
39    }
40
41    public ProfitEvaluator()
42      : base() {
43      AddVariableInfo(new VariableInfo("ExchangeRate", "The index of the variable in the dataset for the exchange rate", typeof(IntData), VariableKind.In));
44      AddVariableInfo(new VariableInfo("Profit", "The estimated profit of the model", typeof(DoubleData), VariableKind.New));
45      AddVariableInfo(new VariableInfo("TransactionCost", "Cost of a trade in percent of the transaction volume (0..1)", typeof(DoubleData), VariableKind.In));
46    }
47
48    public override IOperation Apply(IScope scope) {
49      exchangeRateVarIndex = GetVariableValue<IntData>("ExchangeRate", scope, true).Data;
50      transactionCost = GetVariableValue<DoubleData>("TransactionCost", scope, true).Data;
51      profit = GetVariableValue<DoubleData>("Profit", scope, false, false);
52      if(profit == null) {
53        profit = new DoubleData();
54        scope.AddVariable(new HeuristicLab.Core.Variable(scope.TranslateName("Profit"), profit));
55      }
56
57      return base.Apply(scope);
58    }
59
60    public override void Evaluate(int start, int end) {
61      double cA = 1.0; // start with a capital of one entity of A
62      double cB = 0;
63      double exchangeRate = double.MaxValue;
64      for(int sample = start; sample < end; sample++) {
65        exchangeRate = dataset.GetValue(sample, exchangeRateVarIndex);
66        double originalPercentageChange = GetOriginalValue(sample);
67        double estimatedPercentageChange = GetEstimatedValue(sample);
68        SetOriginalValue(sample, estimatedPercentageChange);
69        if(!double.IsNaN(originalPercentageChange) && !double.IsInfinity(originalPercentageChange)) {
70          if(estimatedPercentageChange > 0) {
71            // prediction is the rate of B/A will increase (= get more B for one A) => exchange all B to A
72            cA += (cB / exchangeRate) * (1-transactionCost);
73            cB = 0;
74          } else if(estimatedPercentageChange < 0) {
75            // prediction is the rate of B/A will drop (= get more A for one B) => exchange all A to B
76            cB += (cA * exchangeRate) * (1-transactionCost);
77            cA = 0;
78          }
79        }
80      }
81
82      if(double.IsNaN(cA) || double.IsInfinity(cA) || double.IsInfinity(cB) || double.IsNaN(cB)) {
83        cA = 0;
84        cB = 0;
85      }
86      // at the end we must exchange all B back to A
87      // (because we want to buy the local beer not import one from B-country)
88      profit.Data = cA + ((cB / exchangeRate) * (1-transactionCost));
89      profit.Data -= 1.0; // substract the start capital to determine actual profit
90    }
91  }
92}
Note: See TracBrowser for help on using the repository browser.