noah222

Results 18 comments of noah222

Have you given the correct permissions to your api key?

Does it create the exact same error without a URL parameter? What do you get with something like: x = auth_client.get_time() print(x)

Did you create a unique api key for the sandbox first? Just checking the basics. But I've also heard the sandbox support can be unreliable and I have not personally...

> > > Happening to me too on three different machines (A Linux desktop, an armbian installation ad macOS). > This is the simple testing script I used: > >...

So the solution is to force your own connection to time out every 10 seconds and reconnect automatically when you have not received a message. If done fast enough there...

What specific kinds of requests are you making when getting throttled? If you are polling prices this is not good practice and will cause all sorts of problems with your...

no one has explained the kind of requests they are making when getting the error

yes, rate limiting on historical requests is not the same as the regular api and they don't explain this anywhere. It's best to leave at least 1 second between requests...

cool, thanks for the info. don't forget when working with the historical data to scan through it and fill in any missing data points. What I mean is that if...

The correct use is: time_in_force='GTT', **cancel_after='min'** To cancel after 2 or 3 minutes use a timer in your loop and then send a cancel message after the elapsed time. If...