From aa6fb2dab1df51d63dcace285e4f6756cb85e20c Mon Sep 17 00:00:00 2001 From: Nawaz Haider Date: Fri, 2 Jan 2026 16:25:18 +0600 Subject: [PATCH] Update handle_message to accept anchors with status "CONFIRMED" in addition to "MATCHED" --- sep_hedge.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sep_hedge.py b/sep_hedge.py index 9e34316..61dc735 100644 --- a/sep_hedge.py +++ b/sep_hedge.py @@ -124,7 +124,7 @@ async def handle_message(message): not anchor_id or side != "BUY" or not outcome - or (status != "MATCHED") + or (status not in ["MATCHED", "CONFIRMED"]) or (size < 1) or (price > 0.50) ):