add experimental flag support and add use_sell_signal (#143)

* add use_sell_signal to config schema

* check use_sell_signal

* set use_sell_signal to false
This commit is contained in:
Michael Egger
2017-11-24 21:58:00 +01:00
committed by GitHub
parent 371ee1e457
commit 858d2329e5
3 changed files with 22 additions and 4 deletions

View File

@@ -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': {