forked from Jay-Jay-D/LeanOptimization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOptimizerConfiguration.cs
125 lines (105 loc) · 3.78 KB
/
OptimizerConfiguration.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
using GeneticSharp.Domain;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Optimization
{
[Serializable]
public class OptimizerConfiguration : IOptimizerConfiguration
{
/// <summary>
/// The settings to generate gene values
/// </summary>
public GeneConfiguration[] Genes { get; set; }
/// <summary>
/// The initial size of the population
/// </summary>
public int PopulationSize { get; set; } = 12;
/// <summary>
/// The maximum population
/// </summary>
public int PopulationSizeMaximum { get; set; } = 24;
/// <summary>
/// The maximum generations
/// </summary>
public int Generations { get; set; } = 1000;
/// <summary>
/// Quit if fitness does not improve for generations
/// </summary>
public int StagnationGenerations { get; set; } = 10;
/// <summary>
/// Number of parallel backtests
/// </summary>
public int MaxThreads { get; set; } = 8;
/// <summary>
/// Override config.json setting
/// </summary>
public string AlgorithmTypeName { get; set; }
/// <summary>
/// Full path to config.json
/// </summary>
public string ConfigPath { get; set; } = "../../../../Lean/Launcher/config.json";
/// <summary>
/// 1 or 2 point crossover
/// </summary>
public bool OnePointCrossover { get; set; } = false;
/// <summary>
/// Override config.json setting
/// </summary>
public string AlgorithmLocation { get; set; }
/// <summary>
/// By default results with negative Sharpe or CAR are ignored
/// </summary>
public bool IncludeNegativeReturn { get; set; }
/// <summary>
/// Type name of fitness function. Defaults to fitness based on Sharpe Ratio
/// </summary>
public string FitnessTypeName { get; set; } = "Optimization.OptimizerFitness";
/// <summary>
/// Override config.json setting
/// </summary>
public string DataFolder { get; set; }
/// <summary>
/// Settings for use with the ConfiguredFitness
/// </summary>
public FitnessConfiguration Fitness { get; set; }
/// <summary>
/// Algorithm backtest start date
/// </summary>
public DateTime? StartDate { get; set; }
/// <summary>
/// Algorithm backtest end date
/// </summary>
public DateTime? EndDate { get; set; }
/// <summary>
/// Likeliness of mutation
/// </summary>
public float MutationProbability { get; set; } = GeneticAlgorithm.DefaultMutationProbability;
/// <summary>
/// Likeliness of crossover
/// </summary>
public float CrossoverProbability { get; set; } = GeneticAlgorithm.DefaultCrossoverProbability;
}
[Serializable]
public class FitnessConfiguration : IFitnessConfiguration
{
/// <summary>
/// Name of the fitness
/// </summary>
public string Name { get; set; }
/// <summary>
/// Field name for Lean result statistic
/// </summary>
public string ResultKey { get; set; }
/// <summary>
/// The scale factor of the fitness with a default value of 1. The maximum fitness value is 10000.
/// </summary>
public double? Scale { get; set; }
/// <summary>
/// The modifier function of the fitness with a default value of 1. A value of -1 will invert the optimization to minimize the algorithm statistic result.
/// </summary>
public double? Modifier { get; set; }
}
}