From e9b12cdd3eba8b4d6fb59036534ad0390da4fe1f Mon Sep 17 00:00:00 2001 From: gcarq Date: Fri, 24 Nov 2017 21:38:07 +0100 Subject: [PATCH] add use_sell_signal to config schema --- config.json.example | 3 +++ freqtrade/misc.py | 6 ++++++ 2 files changed, 9 insertions(+) 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': {