add use_sell_signal to config schema
This commit is contained in:
parent
371ee1e457
commit
e9b12cdd3e
@ -29,6 +29,9 @@
|
|||||||
"BTC_LUN"
|
"BTC_LUN"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"experimental": {
|
||||||
|
"use_sell_signal": true
|
||||||
|
},
|
||||||
"telegram": {
|
"telegram": {
|
||||||
"enabled": true,
|
"enabled": true,
|
||||||
"token": "token",
|
"token": "token",
|
||||||
|
@ -202,6 +202,12 @@ CONF_SCHEMA = {
|
|||||||
'required': ['ask_last_balance']
|
'required': ['ask_last_balance']
|
||||||
},
|
},
|
||||||
'exchange': {'$ref': '#/definitions/exchange'},
|
'exchange': {'$ref': '#/definitions/exchange'},
|
||||||
|
'experimental': {
|
||||||
|
'type': 'object',
|
||||||
|
'properties': {
|
||||||
|
'use_sell_signal': {'type': 'boolean'}
|
||||||
|
}
|
||||||
|
},
|
||||||
'telegram': {
|
'telegram': {
|
||||||
'type': 'object',
|
'type': 'object',
|
||||||
'properties': {
|
'properties': {
|
||||||
|
Loading…
Reference in New Issue
Block a user