wait time back to 1

This commit is contained in:
Nicolás Sánchez 2025-09-03 20:56:35 -03:00
parent f7365c0340
commit b36d73306d
2 changed files with 1 additions and 2 deletions

View File

@ -1,5 +1,4 @@
next:
. Default wait time now 0.5 seconds.
. 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 endpoint /reload_safety_orders.

View File

@ -14,7 +14,7 @@ class Broker:
self.broker_config = broker_config
self.exchange = exchange
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
if "cooldown_multiplier" in self.broker_config:
self.cooldown_multiplier = self.broker_config["cooldown_multiplier"]