☰
Login
Signup
Home
›
Python client
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Register
Categories
Recent Discussions
Activity
Categories
13.8K
All Categories
0
Incidents
153
Node JS client
40
Go client
793
.Net API client
378
Kite Publisher
537
.Net / VBA / Excel (3rd party)
457
Algorithms and Strategies
993
Java client
1.1K
API clients
404
PHP client
4K
Python client
346
Mobile and Desktop apps
1.4K
Market data (WebSockets)
3.3K
General
In this Discussion
June 2023
mkrathi
June 2023
sujith
Fetching order status update via on_order_update()
mkrathi
June 2023
in
Python client
Hello, I am trying to get Order update However I see that I am not fetching any data despite order change on kite. While quote ticks are coming smoothly here but on_order_update function doesnt seems to be returning any data packet. Please help
def on_order_update(self, ws, data):
order_data = json.loads(data)['data']
myOrder.Sell_OrderStatus=order_data['status']
sujith
June 2023
Hi,
Order updates are not sent for placing an order. It will be sent for partial fill, executed or status change like trigger pending to open.
mkrathi
June 2023
Ok but if I placed a buy order and if it is executed that is from 'OPEN' to 'COMPLETE' I should be expecting update. Correct?
sujith
June 2023
Yes, there will be order_update.
mkrathi
June 2023
thanks got it. Can close the thread.
This discussion has been closed.
Order updates are not sent for placing an order. It will be sent for partial fill, executed or status change like trigger pending to open.