I have few questions regarding placing order from Kite App and through code:
1) Will the order placed by code appear in Kite App? 2) If the answer to first question is yes, if I modify the same order in Kite App will I get notification in code? 3) If I place an order from Kite, will I get a notification in code through Kite API?
@sureshganta06, Order updates are not pushed for AMOs and it is only sent when there is an update on the order like when there is partial fill, modification, completed. Order updates are not sent when an order is placed.
What notification are you referring to? Order updates via websockets or postback?
kiteMaster.on_order_update = onOrderUpdate
def onOrderUpdate(ws, data):
print("Order is updated...")
print("---onOrderUpdate: {}".format(data))
Order updates are not pushed for AMOs and it is only sent when there is an update on the order like when there is partial fill, modification, completed. Order updates are not sent when an order is placed.