From 607c604a45b81764401a988cc203d3733e9717fc Mon Sep 17 00:00:00 2001 From: Stefano Ariestasia Date: Mon, 4 Sep 2023 11:16:10 +0900 Subject: [PATCH] add mising const --- freqtrade/constants.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/freqtrade/constants.py b/freqtrade/constants.py index 318c414e1..ecd9f6e5d 100644 --- a/freqtrade/constants.py +++ b/freqtrade/constants.py @@ -177,6 +177,11 @@ CONF_SCHEMA = { 'minimum_trade_amount': {'type': 'number', 'default': 10}, 'targeted_trade_amount': {'type': 'number', 'default': 20}, 'lookahead_analysis_exportfilename': {'type': 'string'}, + 'startup_candle': { + 'type': 'array', + 'uniqueItems': True, + 'default': [199, 399, 499, 999, 1999], + }, 'liquidation_buffer': {'type': 'number', 'minimum': 0.0, 'maximum': 0.99}, 'backtest_breakdown': { 'type': 'array',