Hi.
I have few questions as following -
I am developing a public stock market app in React Native, and for that, I required real-time data from Websocket. So…
- Is it ok that multiple users are getting the market data with the same authentication token of a particular user ?
- Is there any limitation on the number of socket connections at a time for a particular auth_token (a single user) ?
- As I can get only 100 instrument key data from a websocket at a time, if I use the NodeJS server as middleware for Upstox websocket and React Native, this 100 instrument key limitation will affect the functionality of my app because multiple users are getting the data of different instrument keys. So how can I connect a web socket directly to a React Native or React app? Also, is there any limitation to socket connections ?
- Can I get top market gainer and looser data from the Upstox API?