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__":