kws subscribing to same token multiple times

nkotwar
What happens if I do
kws.subscribe([2, 3, 4])
kws.subscribe([4, 5, 6])
will I get tick of symbol (with token = 4) twice?

@SRIJAN
  • SRIJAN
    No,you won't get the same tick twice. You will always get the latest tick even if you subscribe
    multiple times .
  • nkotwar
    gotcha, Thanks.
Sign In or Register to comment.