fix emojies

This commit is contained in:
Dobromir Popov
2025-11-22 21:46:35 +02:00
parent e541e16e7e
commit 9a06288911
37 changed files with 528 additions and 181 deletions

View File

@@ -45,7 +45,7 @@ class MultiExchangeManager:
try:
if isinstance(data, OrderBookSnapshot):
self.data_received[exchange]['orderbooks'] += 1
logger.info(f"📊 {exchange.upper()}: Order book for {data.symbol} - "
logger.info(f"{exchange.upper()}: Order book for {data.symbol} - "
f"Bids: {len(data.bids)}, Asks: {len(data.asks)}")
# Show best bid/ask if available
@@ -102,7 +102,7 @@ class MultiExchangeManager:
if connector.is_connected:
# Subscribe to order book
await connector.subscribe_orderbook(symbol)
logger.info(f"📈 Subscribed to {symbol} order book on {name}")
logger.info(f"Subscribed to {symbol} order book on {name}")
# Subscribe to trades
await connector.subscribe_trades(symbol)
@@ -131,7 +131,7 @@ class MultiExchangeManager:
def _print_statistics(self):
"""Print current data statistics."""
logger.info("📊 Current Statistics:")
logger.info("Current Statistics:")
total_orderbooks = 0
total_trades = 0