diff --git a/config.json.example b/config.json.example index 15c58e1d5..567bb4898 100644 --- a/config.json.example +++ b/config.json.example @@ -29,6 +29,9 @@ "BTC_LUN" ] }, + "experimental": { + "use_sell_signal": true + }, "telegram": { "enabled": true, "token": "token", diff --git a/freqtrade/misc.py b/freqtrade/misc.py index bd8ff2496..97611601b 100644 --- a/freqtrade/misc.py +++ b/freqtrade/misc.py @@ -202,6 +202,12 @@ CONF_SCHEMA = { 'required': ['ask_last_balance'] }, 'exchange': {'$ref': '#/definitions/exchange'}, + 'experimental': { + 'type': 'object', + 'properties': { + 'use_sell_signal': {'type': 'boolean'} + } + }, 'telegram': { 'type': 'object', 'properties': {