From 797ac71376474ac10b9c4dfbfd8f9c61f1e16347 Mon Sep 17 00:00:00 2001 From: Axel CHERUBIN Date: Sat, 19 Jan 2019 13:26:30 -0400 Subject: [PATCH] fix stoploss_on_exchange_interval type from boolean to number --- freqtrade/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freqtrade/constants.py b/freqtrade/constants.py index 9e5561ba3..8fbcdfed7 100644 --- a/freqtrade/constants.py +++ b/freqtrade/constants.py @@ -113,7 +113,7 @@ CONF_SCHEMA = { 'sell': {'type': 'string', 'enum': ORDERTYPE_POSSIBILITIES}, 'stoploss': {'type': 'string', 'enum': ORDERTYPE_POSSIBILITIES}, 'stoploss_on_exchange': {'type': 'boolean'}, - 'stoploss_on_exchange_interval': {'type': 'boolean'} + 'stoploss_on_exchange_interval': {'type': 'number'} }, 'required': ['buy', 'sell', 'stoploss', 'stoploss_on_exchange'] },