add use_sell_signal to config schema

This commit is contained in:
gcarq 2017-11-24 21:38:07 +01:00
parent 371ee1e457
commit e9b12cdd3e
2 changed files with 9 additions and 0 deletions

View File

@ -29,6 +29,9 @@
"BTC_LUN"
]
},
"experimental": {
"use_sell_signal": true
},
"telegram": {
"enabled": true,
"token": "token",

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