-
Helloes,
the first call to the API always throws the timestamp exception:
```
using (var user = new BinanceApiUser("key", "secret"))
{
var api = new BinanceApi();
var order = await…
-
I am trying to cancel an order using the example code:
```
BinanceSymbol symbol = new BinanceSymbol("ETHBTC");
BinanceOrder order = api.getOrder(symbol, 123456L);
System.out.println(order.cancel…
-
Hi,
Sorry i might be doing something wrong. But when i pass a single symbol i get the following error.
It works fine if i pass nothing ( as in returns the 24hour price for all symbols)
System.A…
-
I think I`ve read all of the posts about the Price_Filter issue during sell. But I still couldn`t figure out what is the perfect solution for this as I tried pretty much everything I read so far.
I…
-
I seem to be getting a few exceptions when unsubscribing Aggregate Trade Updates. These exceptions are not propagated to the client and therefore do not get trapped by the client, they are just simply…
-
Hi,
The current implementation of **BinanceApi.balancesMap()** is not thread safe as you are using a **HashMap**. Is it possible to change it to **ConcurrentHashMap**? Even though my call to gettin…
-
i want place order with `Quantity = 0.002m`
`await _binanceClient.Api.PlaceAsync(new LimitOrder(_binanceClient.User)
{
Symbol = Symbol.BTC_USDT,
…
-
Hi, I have another problem, maybe you now what's the problem.
When I use something like **`GetOrderBookTopAsync()`** or -**`GetOpenOrdersAsync()`** on Win server 2016 (I install VS 2017 and .NET Cor…
-
On the close event handler of the DefaultWebSocketClient object I log the event and then attempt to reopen the socket. I am creating an instance of DefaultWebSocketClient which is then used on the Bin…
-
Interested in this because of the rate limits especially.
Maybe theres even a way to optionally block further requests when a rate limit is exceeded to prevent ip bans.