Implement previous backtest result reuse when config and strategy did not change.

This commit is contained in:
Rokas Kupstys
2022-01-06 11:53:11 +02:00
parent 6684bff963
commit 16861db653
9 changed files with 179 additions and 16 deletions

View File

@@ -205,6 +205,11 @@ AVAILABLE_CLI_OPTIONS = {
nargs='+',
choices=constants.BACKTEST_BREAKDOWNS
),
"no_backtest_cache": Arg(
'--no-cache',
help='Do not reuse cached backtest results.',
action='store_true'
),
# Edge
"stoploss_range": Arg(
'--stoplosses',