set minimum of max_open_trades to 1

This commit is contained in:
Janne Sinivirta 2017-09-08 08:49:50 +03:00
parent ac6d25c8f4
commit 768eae31e8

View File

@ -13,7 +13,7 @@ _cur_conf = None
_conf_schema = {
'type': 'object',
'properties': {
'max_open_trades': {'type': 'integer'},
'max_open_trades': {'type': 'integer', 'minimum': 1},
'stake_currency': {'type': 'string'},
'stake_amount': {'type': 'number', 'minimum': 0.0005},
'dry_run': {'type': 'boolean'},