From feab5f82c15370596b9a2701248797d551e95c87 Mon Sep 17 00:00:00 2001 From: Stefano Ariestasia Date: Mon, 4 Sep 2023 11:20:49 +0900 Subject: [PATCH] add missing arg --- freqtrade/commands/cli_options.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/freqtrade/commands/cli_options.py b/freqtrade/commands/cli_options.py index 586318e30..dcbd9714a 100755 --- a/freqtrade/commands/cli_options.py +++ b/freqtrade/commands/cli_options.py @@ -705,4 +705,9 @@ AVAILABLE_CLI_OPTIONS = { help="Use this csv-filename to store lookahead-analysis-results", type=str ), + "startup_candle": Arg( + '--startup-candle', + help='Specify startup candles to be checked (`199`, `499`, `999`, `1999`).', + nargs='+', + ), }