If max_open_trade=-1 means it should be ignored.

This commit is contained in:
misagh
2018-11-14 11:37:53 +01:00
parent 5c8544a425
commit 51dfd2bf47
4 changed files with 23 additions and 2 deletions

View File

@@ -43,7 +43,7 @@ SUPPORTED_FIAT = [
CONF_SCHEMA = {
'type': 'object',
'properties': {
'max_open_trades': {'type': 'integer', 'minimum': 0},
'max_open_trades': {'type': 'integer', 'minimum': -1},
'ticker_interval': {'type': 'string', 'enum': list(TICKER_INTERVAL_MINUTES.keys())},
'stake_currency': {'type': 'string', 'enum': ['BTC', 'XBT', 'ETH', 'USDT', 'EUR', 'USD']},
'stake_amount': {