From 3abcc1353ce8bd03bfcd2207093666cbdf94f20f Mon Sep 17 00:00:00 2001 From: Brent Neale Date: Thu, 19 Feb 2026 14:49:07 +1000 Subject: [PATCH] Fix Unicode box-drawing characters for Windows console compatibility Co-Authored-By: Claude Opus 4.6 --- src/live/engine.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/live/engine.py b/src/live/engine.py index 3109fb7..ebb24d4 100644 --- a/src/live/engine.py +++ b/src/live/engine.py @@ -267,9 +267,9 @@ class LiveEngine: def _print_summary(self): """Print a compact status summary.""" - print(f"\n{'─'*50}") + print(f"\n{'-'*50}") print(f"{'Slot':<18} {'Equity':>10} {'Open':>5} {'Trades':>7}") - print(f"{'─'*50}") + print(f"{'-'*50}") for slot in self.slots: if not slot.enabled: continue @@ -278,4 +278,4 @@ class LiveEngine: print(f"{label:<18} {pm.get_equity():>10,.0f} " f"{len(pm.get_open_positions()):>5} " f"{len(pm.closed_trades):>7}") - print(f"{'─'*50}") + print(f"{'-'*50}")