If you are running your own thread then you don't have to pass `threaded=True`. I would suggest you to do `kws.connect(threaded=True)` which will create a thread in background and run it. With auto reconnect ticker will always be connected.
@Vivek thank you! But if I did just `kws.connect(threaded=True)`and proceeded to start other threads like `t2 = threading.Thread(target=function)` after `kws.connect(threaded=True)`, wouldn't they get blocked?
Sorry if that's a stupid question, I'm not very comfortable with python.
Sorry if that's a stupid question, I'm not very comfortable with python.