It looks like you're new here. If you want to get involved, click one of these buttons!
def on_order_update(self, ws, data):
print(data)
try:
OrderList += [data]
except:
pass
I am not running the KiteTicker in the main thread (threaded=True)Connection error: 1006 - connection was closed uncleanly (None)
Connection closed: 1006 - connection was closed uncleanly (None)
I went thru discussions here, but all they seemed to prescribe was to have minimal work be done in the callbacks, which I think I'm already doing, i.e. print and append.
I have a feeling that this is related to 1006 because the on_order_update is practically doing nothing (see prior post).