From e0cd82553aecc5ed1ff819be40074b557fc4e228 Mon Sep 17 00:00:00 2001 From: Nawaz Haider Date: Sat, 10 Jan 2026 18:59:36 +0600 Subject: [PATCH] Add market data logging to UP and DOWN order placements --- main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.py b/main.py index feec364..a06a4c7 100644 --- a/main.py +++ b/main.py @@ -98,6 +98,7 @@ async def main(): current_trades = increment_trades() logger.info( f"Placed UP anchor and hedge orders. Total trades: {current_trades}" + f"market_data={market_data}" ) elif (trading_side == SIGNALES.DOWN) and up_trend: @@ -111,6 +112,7 @@ async def main(): current_trades = increment_trades() logger.info( f"Placed DOWN anchor and hedge orders. Total trades: {current_trades}" + f"market_data={market_data}" ) await asyncio.sleep(0.01)