Add --trading-mode parameter

This commit is contained in:
Matthias
2021-11-07 10:42:39 +01:00
parent 11b77cf94c
commit 6cc3f65a83
4 changed files with 10 additions and 3 deletions

View File

@@ -179,7 +179,6 @@ AVAILABLE_CLI_OPTIONS = {
'--export',
help='Export backtest results (default: trades).',
choices=constants.EXPORT_OPTIONS,
),
"exportfilename": Arg(
'--export-filename',
@@ -349,6 +348,11 @@ AVAILABLE_CLI_OPTIONS = {
nargs='+',
metavar='BASE_CURRENCY',
),
"trading_mode": Arg(
'--trading-mode',
help='Select Trading mode',
choices=constants.TRADING_MODES,
),
# Script options
"pairs": Arg(
'-p', '--pairs',