Update description of --candletypes

This commit is contained in:
Matthias 2021-12-07 20:00:12 +01:00
parent b4d27973b1
commit 5b67be06c2
2 changed files with 2 additions and 2 deletions

View File

@ -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).

View File

@ -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='+',
),