Reduce sleep duration in main trading loop for improved responsiveness

This commit is contained in:
Nawaz Haider
2026-01-03 15:13:10 +06:00
parent 9381021ac2
commit 4d27054357
+1 -1
View File
@@ -111,7 +111,7 @@ async def main():
f"Placed DOWN anchor and hedge orders. Total trades: {trades}"
)
await asyncio.sleep(2)
await asyncio.sleep(0.01)
if __name__ == "__main__":