Fix --help

This commit is contained in:
Matthias 2022-05-29 20:07:02 +02:00
parent 9a068c0b14
commit 056047f635

View File

@ -616,32 +616,32 @@ AVAILABLE_CLI_OPTIONS = {
), ),
"analysis_groups": Arg( "analysis_groups": Arg(
"--analysis-groups", "--analysis-groups",
help=("grouping output - ", help=("grouping output - "
"0: simple wins/losses by enter tag, ", "0: simple wins/losses by enter tag, "
"1: by enter_tag, ", "1: by enter_tag, "
"2: by enter_tag and exit_tag, ", "2: by enter_tag and exit_tag, "
"3: by pair and enter_tag, ", "3: by pair and enter_tag, "
"4: by pair, enter_ and exit_tag (this can get quite large)"), "4: by pair, enter_ and exit_tag (this can get quite large)"),
nargs='?', nargs='?',
default="0,1,2", default="0,1,2",
), ),
"enter_reason_list": Arg( "enter_reason_list": Arg(
"--enter-reason-list", "--enter-reason-list",
help=("Comma separated list of entry signals to analyse. Default: all. ", help=("Comma separated list of entry signals to analyse. Default: all. "
"e.g. 'entry_tag_a,entry_tag_b'"), "e.g. 'entry_tag_a,entry_tag_b'"),
nargs='?', nargs='?',
default='all', default='all',
), ),
"exit_reason_list": Arg( "exit_reason_list": Arg(
"--exit-reason-list", "--exit-reason-list",
help=("Comma separated list of exit signals to analyse. Default: all. ", help=("Comma separated list of exit signals to analyse. Default: all. "
"e.g. 'exit_tag_a,roi,stop_loss,trailing_stop_loss'"), "e.g. 'exit_tag_a,roi,stop_loss,trailing_stop_loss'"),
nargs='?', nargs='?',
default='all', default='all',
), ),
"indicator_list": Arg( "indicator_list": Arg(
"--indicator-list", "--indicator-list",
help=("Comma separated list of indicators to analyse. ", help=("Comma separated list of indicators to analyse. "
"e.g. 'close,rsi,bb_lowerband,profit_abs'"), "e.g. 'close,rsi,bb_lowerband,profit_abs'"),
nargs='?', nargs='?',
default='', default='',