If I place any order (say market order or SL order or bracket order), how can I know the status of that particular trade, whether it has been executed or not if you have number of orders in your order positions?
@sujith , @tahseen i will not be using the live streaming of the data through websocket, instead I will be using the 5 min historical data for placing the trade , In this case , If i am placing an order , I want to know the confirmation of trade in the next step .So what will be command for knowing the status of the trade wether it has been executed or not after placing the order. Kindly elaborate.
on_order_update
this function receives a order related call back and you can use this
You may use postbacks or order updates via Websockets as mentioned by @tahseen
i will not be using the live streaming of the data through websocket, instead I will be using the 5 min historical data for placing the trade , In this case , If i am placing an order , I want to know the confirmation of trade in the next step .So what will be command for knowing the status of the trade wether it has been executed or not after placing the order.
Kindly elaborate.
Simple answer - choose any of the two below
1. Postback
2. Call back to on_order_update
If you don't know these find someone to code this for you.
Thanks