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
Trying to place LIMIT order and getting this exception:
Newtonsoft.Json.JsonReaderException: 'JSON integer 2284305452 is too large or small for an Int32. Path 'orderId', line 1, position 40.'
after running this line:
var buyLimitOrder = await binanceClient.PostNewOrder("BTCUSDT", 0.01m, 8000m, Binance.API.Csharp.Client.Models.Enums.OrderSide.BUY, Binance.API.Csharp.Client.Models.Enums.OrderType.LIMIT);
I am not sure but should the orderId parameter be LONG rather than Int? This error makes trading BTCUSDT pair impossible. Other pairs are ok as order IDs are not so high yet...
The text was updated successfully, but these errors were encountered:
Hi There,
Trying to place LIMIT order and getting this exception:
Newtonsoft.Json.JsonReaderException: 'JSON integer 2284305452 is too large or small for an Int32. Path 'orderId', line 1, position 40.'
after running this line:
var buyLimitOrder = await binanceClient.PostNewOrder("BTCUSDT", 0.01m, 8000m, Binance.API.Csharp.Client.Models.Enums.OrderSide.BUY, Binance.API.Csharp.Client.Models.Enums.OrderType.LIMIT);
I am not sure but should the orderId parameter be LONG rather than Int? This error makes trading BTCUSDT pair impossible. Other pairs are ok as order IDs are not so high yet...
The text was updated successfully, but these errors were encountered: