Improve default for --candle-types

This commit is contained in:
Matthias
2023-07-09 15:02:47 +02:00
parent d8d0a60322
commit 10f34563f8
2 changed files with 2 additions and 3 deletions

View File

@@ -67,8 +67,7 @@ ARGS_BUILD_STRATEGY = ["user_data_dir", "strategy", "template"]
ARGS_CONVERT_DATA = ["pairs", "format_from", "format_to", "erase", "exchange"] ARGS_CONVERT_DATA = ["pairs", "format_from", "format_to", "erase", "exchange"]
ARGS_CONVERT_DATA_OHLCV = ARGS_CONVERT_DATA + ["timeframes", "trading_mode", ARGS_CONVERT_DATA_OHLCV = ARGS_CONVERT_DATA + ["timeframes", "trading_mode", "candle_types"]
"candle_types"]
ARGS_CONVERT_TRADES = ["pairs", "timeframes", "exchange", "dataformat_ohlcv", "dataformat_trades"] ARGS_CONVERT_TRADES = ["pairs", "timeframes", "exchange", "dataformat_ohlcv", "dataformat_trades"]

View File

@@ -381,7 +381,7 @@ AVAILABLE_CLI_OPTIONS = {
), ),
"candle_types": Arg( "candle_types": Arg(
'--candle-types', '--candle-types',
help='Select candle type to use', help='Select candle type to convert. Defaults to all available types.',
choices=[c.value for c in CandleType], choices=[c.value for c in CandleType],
nargs='+', nargs='+',
), ),