This commit is contained in:
2026-05-09 14:26:30 +09:00
parent 193afa3e01
commit 8f514d9136

View File

@@ -59,7 +59,7 @@ class OrderManager:
size = kwargs["size"] size = kwargs["size"]
if self.future_positions[kwargs["symbol"]] + size > self.POSITIONS_LIMIT[kwargs["symbol"]]: if self.future_positions[kwargs["symbol"]] + size > self.POSITIONS_LIMIT[kwargs["symbol"]]:
return False return False
print(f"주문 전송: {kwargs}")
self.future_positions[kwargs["symbol"]] += size self.future_positions[kwargs["symbol"]] += size
self.exchange.send_add_message(**kwargs) self.exchange.send_add_message(**kwargs)