From 5b67be06c223a51f61832dd75bd81da3b9b4d013 Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 7 Dec 2021 20:00:12 +0100 Subject: [PATCH] Update description of --candletypes --- docs/data-download.md | 2 +- freqtrade/commands/cli_options.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/data-download.md b/docs/data-download.md index 3bff1440c..9bfc1e685 100644 --- a/docs/data-download.md +++ b/docs/data-download.md @@ -219,7 +219,7 @@ optional arguments: --trading-mode {spot,margin,futures} Select Trading mode --candle-types {spot,,futures,mark,index,premiumIndex,funding_rate} [{spot,,futures,mark,index,premiumIndex,funding_rate} ...] - Select Trading mode + Select candle type to use Common arguments: -v, --verbose Verbose mode (-vv for more, -vvv to get all messages). diff --git a/freqtrade/commands/cli_options.py b/freqtrade/commands/cli_options.py index d198a4b2f..33d751f54 100644 --- a/freqtrade/commands/cli_options.py +++ b/freqtrade/commands/cli_options.py @@ -356,7 +356,7 @@ AVAILABLE_CLI_OPTIONS = { ), "candle_types": Arg( '--candle-types', - help='Select Trading mode', + help='Select candle type to use', choices=[c.value for c in CandleType], nargs='+', ),