Add show-trades command

This commit is contained in:
Matthias
2020-05-02 11:26:12 +02:00
parent 0f50449196
commit 56bb5f7a11
5 changed files with 47 additions and 4 deletions

View File

@@ -217,7 +217,7 @@ AVAILABLE_CLI_OPTIONS = {
),
"print_json": Arg(
'--print-json',
help='Print best result detailization in JSON format.',
help='Print output in JSON format.',
action='store_true',
default=False,
),
@@ -425,6 +425,11 @@ AVAILABLE_CLI_OPTIONS = {
choices=["DB", "file"],
default="file",
),
"trade_ids": Arg(
'--tradeids',
help='Specify Trade ids to trade',
nargs='+',
),
# hyperopt-list, hyperopt-show
"hyperopt_list_profitable": Arg(
'--profitable',