☰
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
14.2K
All Categories
0
Incidents
159
Node JS client
45
Go client
802
.Net API client
386
Kite Publisher
538
.Net / VBA / Excel (3rd party)
466
Algorithms and Strategies
1K
Java client
1.1K
API clients
408
PHP client
4.1K
Python client
350
Mobile and Desktop apps
1.4K
Market data (WebSockets)
3.4K
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.