@rakeshr, I am able to stream the data now flawlessly with some minor errors, that I can handle alone. my main hurdle was to handle the overload of on_ticks event.
@rakeshr you were right, the on_ticks(ws, ticks) function inside while loop was perfectly triggering. thank you so much for the patience & support once again.
Dear @sujith,
My apologies if you have mistaken my humble request to @rakeshr as a compulsion/forcing, I am very well aware that was a voluntary act from rakeshr and was trying to help me. I have approached him again only because, that was his cod…
hello @rakeshr, please be kind enough to provide me a solution, I am stuck at this point and need your help. continuously print("i am from main -> after kws.connect(threaded=True)") line is getting printed but excel sheet is not updating. (i susp…
@rakeshr I have tried your suggestion, and the call back is working perfectly fine when i have changed the indent of "kws.on_ticks=on_ticks". My updated code looks like below
while True:
def on_ticks(ws, ticks):
feed_data(ticks)
…
@rakeshr I have tried your above sugggested logic to offload on_ticks and my new code looks like below. my issue here is, the lines after "while True:" are not getting executed.
you may also note there is a compiler error for repeating the " de…
Hello forum experts, it is a humble request, this might look simple to you however, please help me if you know the solution, i am really stuck here in my learning process. thanks in advance.
ACR