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
I have found two places that have caused incorrect behaviour in ExchangeAPIExtensions.PlaceSafeMarketOrderAsync():
Line 309 - The "IsBuy" parameter isn't set in the request, so it is always treated as sell-order.
Line 331 - "break" breaks the Switch-statement, not the for-loop. So the loop always runs 20 times (maxTries) and then throws an APIExeption for time out.
The text was updated successfully, but these errors were encountered:
I have found two places that have caused incorrect behaviour in ExchangeAPIExtensions.PlaceSafeMarketOrderAsync():
Line 309 - The "IsBuy" parameter isn't set in the request, so it is always treated as sell-order.
Line 331 - "break" breaks the Switch-statement, not the for-loop. So the loop always runs 20 times (maxTries) and then throws an APIExeption for time out.
The text was updated successfully, but these errors were encountered: