wait time back to 1
This commit is contained in:
parent
f7365c0340
commit
b36d73306d
|
|
@ -1,5 +1,4 @@
|
||||||
next:
|
next:
|
||||||
. Default wait time now 0.5 seconds.
|
|
||||||
. Now the trader supports multiple safety orders at the same time.
|
. Now the trader supports multiple safety orders at the same time.
|
||||||
. Removed forcing orders when importing a trader. Maybe it will be reinstated at a later date.
|
. Removed forcing orders when importing a trader. Maybe it will be reinstated at a later date.
|
||||||
. Removed endpoint /reload_safety_orders.
|
. Removed endpoint /reload_safety_orders.
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@ class Broker:
|
||||||
self.broker_config = broker_config
|
self.broker_config = broker_config
|
||||||
self.exchange = exchange
|
self.exchange = exchange
|
||||||
self.last_price = 0
|
self.last_price = 0
|
||||||
self.wait_time = .5 #Default wait time for API breathing room
|
self.wait_time = 1 #Default wait time for API breathing room
|
||||||
self.cooldown_multiplier = 2 #Default cooldown multiplier value
|
self.cooldown_multiplier = 2 #Default cooldown multiplier value
|
||||||
if "cooldown_multiplier" in self.broker_config:
|
if "cooldown_multiplier" in self.broker_config:
|
||||||
self.cooldown_multiplier = self.broker_config["cooldown_multiplier"]
|
self.cooldown_multiplier = self.broker_config["cooldown_multiplier"]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue