From a2e6ba939f31e8395fc8f075f6772a3f475aeda6 Mon Sep 17 00:00:00 2001 From: Nawaz Haider Date: Fri, 2 Jan 2026 15:25:42 +0600 Subject: [PATCH] Update PLACE_OPPOSITE_ORDER setting and increase sleep duration in main loop --- config.py | 2 +- main.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config.py b/config.py index f57a435..0e9ec9d 100644 --- a/config.py +++ b/config.py @@ -10,4 +10,4 @@ TRADING_BPS_THRESHOLD = 50 MARKET_SESSION_SECONDS = 900 TIMEZONE = "US/Eastern" MAX_TRADES = 1 -PLACE_OPPOSITE_ORDER = True # Hedge orders +PLACE_OPPOSITE_ORDER = False # Hedge orders diff --git a/main.py b/main.py index 41b8d3d..841cf78 100644 --- a/main.py +++ b/main.py @@ -109,7 +109,7 @@ async def main(): f"Placed DOWN anchor and hedge orders. Total trades: {trades}" ) - await asyncio.sleep(1) + await asyncio.sleep(2) if __name__ == "__main__":