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',