From 73f1a2e249160e1114a340c3b1997c167f8f907c Mon Sep 17 00:00:00 2001 From: Nawaz Haider Date: Fri, 2 Jan 2026 11:13:59 +0600 Subject: [PATCH] Remove commented-out logging and trading signal execution in OrderBook class --- utils/orderbook.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/utils/orderbook.py b/utils/orderbook.py index 69e07a6..d512d32 100644 --- a/utils/orderbook.py +++ b/utils/orderbook.py @@ -199,18 +199,6 @@ class OrderBook: if current_signal and current_signal != self.last_signal: self.last_signal = current_signal - # if current_signal != SIGNALES.NEUTRAL: - # logger.info( - # f"NEW SIGNAL: {current_signal} detected! ({micro_vs_mid_bps:.1f} bps)" - # ) - - # await self.execute_trading_signal( - # current_signal, - # market_data["micro_price"], - # market_data["mid_price"], - # market_data["best_bid_price"], - # ) - await asyncio.sleep(0.005) except Exception as e: