-
Notifications
You must be signed in to change notification settings - Fork 521
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
API integration rate limits #547
Comments
Hi @happysammy apologies for the delayed response! The short answer is no, the current adapters don't do a good job of handling any rate limits. However, there is some indirect rate limiting available via the
If rate limiting is extremely important, you could probably adapt the generic Going forward my ideas on how to handle this are:
Do you have any thoughts or ideas? |
For what it's worth, IB API allow automatic pacing. From their release notes :
|
Closing this issue for now, as we finally have basic rate limiting available for the base Discussions and developments can be tracked here. |
Exchanges usually impose what is called a rate limit. Exchanges will remember and track your user credentials and your IP address and will not allow you to query the API too frequently. So I was wondering how you process ratelimits for these Exchanges(such as Binance or Ftx)? As far as i know, token bucket algorithm often be used to solve the rate limit problem.
The text was updated successfully, but these errors were encountered: