I am using KiteTicker in threaded mode and I am consistently getting the above error. The above runtime error occurs in the main thread at the last line, namely, kt.set_mode(kt.MODE_FULL, tokens). I need to use kt.MODE_FULL only and I need all ticks.
Code snippet where error occurs (see last line): kt.connect(threaded=True) tokens = [13299458] while True: if kt.is_connected(): kt.set_mode(kt.MODE_FULL, tokens) => ERROR: CLOSE REASON WITHOUT CLOSE CODE
Entire code of main.py (for reference): from kiteconnect import KiteTicker import logging