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