This topic will push all change events of your orders.
Push frequency: real-time
Account & Trade Type Support
Classic accounts: Supports all trade types. UTA accounts: Supports Spot, Futures and Margin (Cross)trade types. Margin (Isolated) is expected to be supported soon.Note: The Pro API is currently in beta testing and should not be used in production trading environments.
// All order change events for all symbols.{"id":"1545910660739",// OPTIONAL"action":"SUBSCRIBE",// or UNSUBSCRIBE"channel":"orderAll","tradeType":"SPOT"// SPOT / FUTURES / ISOLATED / CROSS / UNIFIED}// All order change events for your specified symbol.{"id":"1545910660739",// OPTIONAL"action":"SUBSCRIBE",// or UNSUBSCRIBE"channel":"order","tradeType":"SPOT",// SPOT / FUTURES / ISOLATED / CROSS / UNIFIED"symbol":"BTC-USDT"}// All order change events for all symbols(UTA SPOT and UTA MARGIN and UTA FUTURE).{"id":"1545910660739",// OPTIONAL"action":"SUBSCRIBE",// or UNSUBSCRIBE"channel":"orderAll","tradeType":"UNIFIED"}// All order change events for your specified symbol(UTA SPOT and UTA MARGIN).{"id":"1545910660739",// OPTIONAL"action":"SUBSCRIBE",// or UNSUBSCRIBE"channel":"order","tradeType":"UNIFIED","symbol":"XRP-USDT"// subscribe both UTA SPOT and UTA MARGIN}// All order change events for your specified symbol(UTA FUTURES).{"id":"1545910660739",// OPTIONAL"action":"SUBSCRIBE",// or UNSUBSCRIBE"channel":"order","tradeType":"UNIFIED","symbol":"XRPUSDTM"}
Note: If you are trading in UTA mode, set tradeType to UNIFIED. This WebSocket subscription will deliver order updates for all supported trade types under the UTA account.