Add days breakdown table to backtesting

This commit is contained in:
rextea
2021-03-26 18:40:50 +03:00
parent dd5873ef24
commit 2bed41da5d
5 changed files with 74 additions and 9 deletions

View File

@@ -183,6 +183,12 @@ AVAILABLE_CLI_OPTIONS = {
type=float,
metavar='FLOAT',
),
"show_days": Arg(
'--show-days',
help='Print days breakdown for backtest results',
action='store_true',
default=False,
),
# Edge
"stoploss_range": Arg(
'--stoplosses',