You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently Backtrader performs a grid search to optimize strategy parameters by running through all possible parameters configurations. More complex strategies would benefit from applying more advanced parameter optimizer. While it is possible to perform such optimizations outside of Backtrader one would loose the already established performance improve from running the same strategy with different parameters.
The Optimizer class would take care of:
Configuring parameter sets to be tested
Ranking different parameter settings (ranking function should also be configurable for users)
Determining when to stop the optimization run
Possible interesting stock optimizers are:
Grid search (keep current behavior as default)
Bayesian optimization
Evolutionary optimization
I'm happy to contribute for this enhancement if there is some interest in it.
The text was updated successfully, but these errors were encountered:
Currently Backtrader performs a grid search to optimize strategy parameters by running through all possible parameters configurations. More complex strategies would benefit from applying more advanced parameter optimizer. While it is possible to perform such optimizations outside of Backtrader one would loose the already established performance improve from running the same strategy with different parameters.
The Optimizer class would take care of:
Possible interesting stock optimizers are:
I'm happy to contribute for this enhancement if there is some interest in it.
The text was updated successfully, but these errors were encountered: