Binance.API.Csharp.Client
Binance.API.Csharp.Client copied to clipboard
C#.NET client for Binance Exchange API.
The switch statement doesn't work because eventData.e isn't being cast to a string. I ran through the code in debug mode and was able to confirm changing this: `switch (eventData.e)`...
AggregateTradeMessage is returning BuyerIsMaker aways true. Anyone with this problem? I'm trying to make a sort of tape reading analysis...
Placing market orders was working fine until yesterday. I use the following standard command: var sellMarketOrder = binanceClient.PostNewOrder("xxxbtc", 1000, 0, OrderSide.SELL, OrderType.MARKET).Result; However, this has now suddenly stopped working and...
Place Market order functionality always break out and throw an exception "at least 1 error occurred". any help please
I'm doing tests. Everything works correctly, except NewOrder method It returns "Bad Request" (400) Has this happened to you? Does anybody know what is it due to?
using the code var sellOrder = await client.PostNewOrder("trxbtc", 100m, 0.00000500m, OrderSide.SELL,OrderType.LIMIT); the api is send the error : "Api Error Code: -1100 Message: Illegal characters found in parameter 'price'; legal...
I am using the Websockets. After a while of running, I get the below error. Unable to read data from the transport connection: An established connection was aborted by the...
Hi all, I'm new to C# and I'm trying to understand how to use this library for my own purpose. I've managed to acquire pairs prices for several hours and...