allow max_open_trades to be zero (#561)
This commit is contained in:
parent
e907c48438
commit
fd44c0e59e
@ -333,7 +333,7 @@ def build_subcommands(parser: argparse.ArgumentParser) -> None:
|
||||
CONF_SCHEMA = {
|
||||
'type': 'object',
|
||||
'properties': {
|
||||
'max_open_trades': {'type': 'integer', 'minimum': 1},
|
||||
'max_open_trades': {'type': 'integer', 'minimum': 0},
|
||||
'ticker_interval': {'type': 'integer', 'enum': [1, 5, 30, 60, 1440]},
|
||||
'stake_currency': {'type': 'string', 'enum': ['BTC', 'ETH', 'USDT']},
|
||||
'stake_amount': {'type': 'number', 'minimum': 0.0005},
|
||||
|
Loading…
Reference in New Issue
Block a user