From 57985f5b6daa5f55b432f71bf07447212ecc0e93 Mon Sep 17 00:00:00 2001 From: Nawaz Haider Date: Thu, 1 Jan 2026 22:53:17 +0600 Subject: [PATCH] Remove logging for new trading signals in OrderBook class --- utils/orderbook.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/orderbook.py b/utils/orderbook.py index 1bca727..69e07a6 100644 --- a/utils/orderbook.py +++ b/utils/orderbook.py @@ -199,7 +199,7 @@ class OrderBook: if current_signal and current_signal != self.last_signal: self.last_signal = current_signal - if current_signal != SIGNALES.NEUTRAL: + # if current_signal != SIGNALES.NEUTRAL: # logger.info( # f"NEW SIGNAL: {current_signal} detected! ({micro_vs_mid_bps:.1f} bps)" # )