Skip to content

Alf421337/LeanParameterOptimization

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

99 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LeanParameterOptimization

Parameter optimization for Lean Trading Algorithms

This toolset allows you to execute multiple parallel backtests using a local Lean clone. It is possible to configure several different optimization methods to fit your trading algorithm to an array of different success measures.

You must edit the config file optimization.json to define parameters and other settings. The parameter values are fed into the Lean config and can be accessed in an algorithm using the QuantConnect.Configuration.Config methods.

An example algorithm is provided here: ParameterizedAlgorithm.cs and here: ParameterizedSharedAppDomainAlgorithm.py

Quickstart

  1. Clone Lean from here.
  2. Clone LeanParameterOptimization so that it shares the same parent folder as the Lean clone.
  3. Edit the optimization.json file and enter the location of your trading algorithm in "algorithmLocation".
  4. Now enter the class name of your algorithm in "algorithmTypeName".
  5. Enter the location of your trade and quote bar data in the "dataFolder" setting.
  6. Configure the "maxThreads" to define the number of parallel backtests (ignored for Python).
  7. Set "algorithmLanguage" to CSharp or Python.
  8. Build and run the project "Jtc.Optimization.Launcher.Legacy"

Configuration

Full documentation is provided in comments: OptimizerConfiguration

A few important options:

fitnessTypeName

Genetic

The default OptimizerFitness is a simple Sharpe Ratio tournament. There is also CompoundingAnnualReturnFitness to maximize raw returns. It is possible to optimize any Lean statistic using ConfiguredFitness.

SharpeMaximizer

Specifying the SharpeMaximizer fitness allows access to all of the optimization methods provided by the SharpLearning library. These include Random Search. Grid Search, Particle Swarm, Smac and several others.

NFoldCrossSharpeMaximizer

The simple SharpeMaximizer has been extended in NFoldCrossSharpeMaximizer so that the success score is measured over N-fold periods. This will prevent overfitting to a single in-sample period.

WalkForwardSharpeMaximizer

Also now available is an experimental release of N-fold Walk Forward optimization.

WalkForwardWeightedMetricSharpeMaximizer

An attempt to extend the single iteration walk forward optimizer has now evolved into a specialized ensemble machine learning method.

An optimization algorithm must be selected as iteration parent. This optimizer will improve a weighted metric cost function composed of the following: i) The out-sample score of each walk forward period fold, which is derived from an optimization of the in-sample fold using a separately selected optimization algorithm. ii) The standard deviation of the parameter search ranges (the genes) drawn from the best performer in each fold (the alpha).

After each parent iteration, the fold optimization range is constrained with the highest and lowest parameter values of the fold alphas. The effect of this gradual tightening of constraints is analogous to synthesized annealing, allowing convergence on a minimized range of successful parameters.

The parent optimizer will stop early for cases in which all out-sample scores return a failure. This indicates that the in-sample does not generalize and can often be resolved with a longer optimization period.

useSharedAppDomain

If it possible to run each parallel backtest in a dedicated AppDomain, or in a single AppDomain. The latter option can be useful for training a machine learning model and tends to execute more quickly. For Python algorithms this setting is ignored as only a single AppDomain is supported.

minimumTrades

Setting this value correctly will prevent fitting to a small number of high-success events that are unlikely to generalize. Any backtest not meeting the minimum trades will be ignored.

enableRunningDuplicateParameters

When training a non-deterministic machine learning model (such as QLearning), this will allow executing the same parameters multiple times on a single period. By default, duplicate parameters are not executed more than once.

Optimizers

The optimizers support multiple parallel executions of a Lean algorithm as standard. Currently, the following methods are available:

  • Genetic Tournament
  • Random Search
  • Grid (exhaustive) Search
  • Particle Swarm
  • Bayesian
  • Globalized Bounded Nelder Mead
  • Smac

These methods can target several fitness and maximization goals:

  • N-Fold Cross-Validated Sharpe Ratio
  • N-Fold Cross-Validated Compounding Annual Return
  • Walk Forward Period Sharpe Ratio
  • Nested Cross-Validated Sharpe Ratio
  • Maximization and minimization of most Lean algorithm statistics (Sharpe Ratio, Alpha, Win Rate, etc)

User Interfaces

Now also provided are several Blazor interfaces:

Config

Chart

WIP

  • Python mutli-threaded parallel optimization
  • Python running in browser
  • User supplied C# to wasm compile in browser
  • Genetic optimization in browser
  • Other optimization methods in browser

Issues

There are occasionally breaking changes pushed to the Lean master branch. You should find my fork is more stable for use with the Optimizer.

About

Parameter Optimization for Lean Algorithms

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 88.1%
  • JavaScript 7.7%
  • HTML 2.9%
  • CSS 0.7%
  • Python 0.3%
  • Gherkin 0.2%
  • Batchfile 0.1%