separating unfulfilled timeouts for buy and sell

This commit is contained in:
Nullart
2018-06-14 09:32:52 +08:00
committed by xmatthias
parent 6dd5f85fb6
commit 98108a78f1
6 changed files with 36 additions and 15 deletions

View File

@@ -61,7 +61,14 @@ CONF_SCHEMA = {
'minProperties': 1
},
'stoploss': {'type': 'number', 'maximum': 0, 'exclusiveMaximum': True},
'unfilledtimeout': {'type': 'integer', 'minimum': 0},
'unfilledtimeout': {
'type': 'object',
'properties': {
'use_book_order': {'type': 'boolean'},
'buy': {'type': 'number', 'minimum': 3},
'sell': {'type': 'number', 'minimum': 10}
}
},
'bid_strategy': {
'type': 'object',
'properties': {