Add Emergencyselling after X timeouts have been reached

This commit is contained in:
Matthias
2021-11-06 11:48:49 +01:00
parent d99eaccb5a
commit 7a907a7636
5 changed files with 20 additions and 2 deletions

View File

@@ -156,6 +156,7 @@ CONF_SCHEMA = {
'properties': {
'buy': {'type': 'number', 'minimum': 1},
'sell': {'type': 'number', 'minimum': 1},
'exit_timeout_count': {'type': 'number', 'minimum': 0, 'default': 0},
'unit': {'type': 'string', 'enum': TIMEOUT_UNITS, 'default': 'minutes'}
}
},