From 42b29cd307a4dbd1f2a477545dcbe353532710aa Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 13 Nov 2022 19:31:49 +0100 Subject: [PATCH] Fix constants type --- freqtrade/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freqtrade/constants.py b/freqtrade/constants.py index 0c15883a4..534d06fd4 100644 --- a/freqtrade/constants.py +++ b/freqtrade/constants.py @@ -159,7 +159,7 @@ CONF_SCHEMA = { 'ignore_buying_expired_candle_after': {'type': 'number'}, 'trading_mode': {'type': 'string', 'enum': TRADING_MODES}, 'margin_mode': {'type': 'string', 'enum': MARGIN_MODES}, - 'reduce_df_footprint': {'type': 'number', 'default': False}, + 'reduce_df_footprint': {'type': 'boolean', 'default': False}, 'liquidation_buffer': {'type': 'number', 'minimum': 0.0, 'maximum': 0.99}, 'backtest_breakdown': { 'type': 'array',