I am not using a webhook for postbacks, instead, I am listening for the same on 'on_order_update' callback of KiteTicker. There I get a blank checksum. The example you pointed to uses a server for receiving postbacks
@sujith @rakeshr I figured it out! Quite stupid really, but my laptop has a setting of going to sleep after the display turns off. Now this happens generally after 3 hours, and when it happened, the executing instance used to give this error. Change…
Same error happened today as well at 12:44 PM.
This is how kite connect is called:
# Assign the callbacks.
kws.on_ticks = on_ticks
kws.on_connect = on_connect
kws.on_close = on_close
# connect for listening with threading enabled
kws.con…
@rakeshr thanks for the reply. I am actually only doing 1 operation in the on_tick method - adding the ticks in a queue (inbuilt python datastructure) The other thread is a consumer thread (producer consumer model) and is not being called from on_ti…