diff --git a/freqtrade/constants.py b/freqtrade/constants.py index caa0b44f0..4b3cff7a1 100644 --- a/freqtrade/constants.py +++ b/freqtrade/constants.py @@ -153,7 +153,7 @@ CONF_SCHEMA = { }, }, 'amount_reserve_percent': {'type': 'number', 'minimum': 0.0, 'maximum': 0.5}, - 'stoploss': {'type': 'number', 'maximum': 0, 'exclusiveMaximum': True, 'minimum': -1}, + 'stoploss': {'type': 'number', 'maximum': 0, 'exclusiveMaximum': True}, 'trailing_stop': {'type': 'boolean'}, 'trailing_stop_positive': {'type': 'number', 'minimum': 0, 'maximum': 1}, 'trailing_stop_positive_offset': {'type': 'number', 'minimum': 0, 'maximum': 1},