WSt: 'om' (automatic on connect)
Order Update Feed
Real-time order and fill events pushed automatically over the WebSocket connection — the live counterpart to polling Order Book. No separate subscribe step is required.
Real-time order and fill events pushed automatically over the WebSocket connection — the live counterpart to polling Order Book. No separate subscribe step is required.
Overview
Once the connect handshake in WebSocket Overview succeeds, order-lifecycle events for the logged-in account — acknowledgments, fills, rejections, cancellations — start arriving automatically as
t: "om"messages. This should be the primary source of truth for order state in any live strategy; Order Book and Order History are for reconciliation, not the live path.t === "om"on incoming frames.Update messages (t: 'om')
om— represents an order update.Cfor CNC,Mfor margin/NRML,Ifor intraday — see Product Type values).New,Replaced,Complete,Rejected, etc.Fill,Rejected,Canceled, and others).LMT,MKT,SL-LMT,SL-MKT.DAY,EOS,IOC, etc.reporttypeisFill.Best practices
reporttype, not juststatus— two different events can leave an order in the samestatuswhile meaning very different things for your position tracking.Notes
This is the same event history exposed via REST on Order History, pushed live instead of pulled — build primary logic on this feed and use the REST endpoint only for after-the-fact debugging.