Fix constants type

This commit is contained in:
Matthias 2022-11-13 19:31:49 +01:00
parent 1e9e7887aa
commit 42b29cd307
1 changed files with 1 additions and 1 deletions

View File

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