Merge pull request #4606 from rextea/add_days_breakdown_to_backtesting_summary

Add days breakdown table to backtesting
This commit is contained in:
Matthias
2021-10-21 13:56:30 +02:00
committed by GitHub
10 changed files with 166 additions and 15 deletions

View File

@@ -193,6 +193,12 @@ AVAILABLE_CLI_OPTIONS = {
type=float,
metavar='FLOAT',
),
"backtest_breakdown": Arg(
'--breakdown',
help='Show backtesting breakdown per [day, week, month].',
nargs='+',
choices=constants.BACKTEST_BREAKDOWNS
),
# Edge
"stoploss_range": Arg(
'--stoplosses',