How many data points by web socket?

vaibhavsharma13
How many data points are transferred by web socket per second or per minute in python? Is there any data loss if I don't receive the data on time and the next data comes?
Tagged:
  • rakeshr
    How many data points are transferred by web socket per second or per minute in python?
    Websocket streams as data received from the exchange. There is no fixed value to it. Depends on subscribed contract movements, etc.
    Is there any data loss if I don't receive the data on time and the next data comes?
    Yes, blocking the ticker stream causes the next packet loss or disconnection. This thread explains more.
Sign In or Register to comment.