|
|
|
|
@ -48,6 +48,18 @@ CONF_SCHEMA = {
|
|
|
|
|
'minProperties': 1
|
|
|
|
|
},
|
|
|
|
|
'stoploss': {'type': 'number', 'maximum': 0, 'exclusiveMaximum': True},
|
|
|
|
|
'bid_strategy': {
|
|
|
|
|
'type': 'object',
|
|
|
|
|
'properties': {
|
|
|
|
|
'ask_last_balance': {
|
|
|
|
|
'type': 'number',
|
|
|
|
|
'minimum': 0,
|
|
|
|
|
'maximum': 1,
|
|
|
|
|
'exclusiveMaximum': False
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
'required': ['ask_last_balance']
|
|
|
|
|
},
|
|
|
|
|
'bittrex': {'$ref': '#/definitions/exchange'},
|
|
|
|
|
'telegram': {
|
|
|
|
|
'type': 'object',
|
|
|
|
|
@ -85,6 +97,7 @@ CONF_SCHEMA = {
|
|
|
|
|
'stake_amount',
|
|
|
|
|
'dry_run',
|
|
|
|
|
'minimal_roi',
|
|
|
|
|
'bid_strategy',
|
|
|
|
|
'telegram'
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
|