It seems the API requests for placing order are rate limited at 5 requests/sec. Also, it takes few seconds to hit the API and get some response. For eg. quotes.
How would you go on placing 100+ orders in short time span? I want to know easiest way. I am using python.
The order placement APIs are capped at 200 requests per second. Only the get requests are capped at 10 requests per second except for GetQuote and Historical data API.
We can create multiple apps and then run it parallelly for a single account. For eg. I create two apps because I want to make more requests then it will work as a way around.
Only the get requests are capped at 10 requests per second except for GetQuote and Historical data API.
We can create multiple apps and then run it parallelly for a single account. For eg. I create two apps because I want to make more requests then it will work as a way around.
You can know more about the rate limits here.