2
I did create my own altcoins trading bot in Python3. The bot trades on the minute market and is multi-threaded. Which makes that a lot of requests are send to the server of the exchange.
I'm (was) using Bittrex as exchange. Although it did works, the bot required some more fine-tuning. I was in that process when Bittrex blocked my account, without explanation. I guess I was demanding a bit too much from the servers, as the threads addressed as much as 10 requests per seconds.
Now the question is: in order to avoid being blocked, what is an acceptable request rate for such a server ?
TIA
Christophe
In what way is your account blocked? Definitely not IP blocked? The servers might do that automatically in response to a perceived DDOS attack. – weston – 2017-09-08T17:34:00.737
Thank you for your answer ! I could observe following: 1. any transaction via the website is refused, resulting in an "ACCOUNT_BLOCKED" message; 2. I cannot access the API interface my bot is using, because they deleted my API keys, and I cannot generate a new one; 3. changing IP (with a VPN) does not resolve the problem. – reboltof – 2017-09-09T11:02:42.590