From 935e8f49de98bbddc4504e9dd9860997d67a620f Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 27 Apr 2024 15:36:26 +0200 Subject: [PATCH] Type-check fee from configuration ... --- freqtrade/constants.py | 1 + 1 file changed, 1 insertion(+) diff --git a/freqtrade/constants.py b/freqtrade/constants.py index 37e2d849c..b4ab907ff 100644 --- a/freqtrade/constants.py +++ b/freqtrade/constants.py @@ -171,6 +171,7 @@ CONF_SCHEMA = { 'use_exit_signal': {'type': 'boolean'}, 'exit_profit_only': {'type': 'boolean'}, 'exit_profit_offset': {'type': 'number'}, + 'fee': {'type': 'number', 'minimum': 0, 'maximum': 0.1}, 'ignore_roi_if_entry_signal': {'type': 'boolean'}, 'ignore_buying_expired_candle_after': {'type': 'number'}, 'trading_mode': {'type': 'string', 'enum': TRADING_MODES},