You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the algorithm hits the max_investment and tries to place $n$ open buy orders, it requests the current balances from Kraken. This is done in place_new_buy_order function, which will then evaluate if the order can placed or not. The problem here is that the the check_n_open_buy_orders function will not exit the while loop, causing lots of requests to Kraken and ending in rate limit errors.
The text was updated successfully, but these errors were encountered:
When the algorithm hits the$n$ open buy orders, it requests the current balances from Kraken. This is done in
max_investment
and tries to placeplace_new_buy_order
function, which will then evaluate if the order can placed or not. The problem here is that the thecheck_n_open_buy_orders
function will not exit the while loop, causing lots of requests to Kraken and ending in rate limit errors.The text was updated successfully, but these errors were encountered: