glitch100 / BinanceDotNet

Official C# Wrapper for the Binance exchange API, with REST and WebSocket endpoints
https://www.nuget.org/packages/BinanceDotNet/
MIT License
161 stars 138 forks source link

CreateOrder and CancelOrder hang #170

Open scipius opened 4 years ago

scipius commented 4 years ago

Issue Overview

I've tried the example and everything runs fine until createOrder. The command seems to hang and never returns a response.

Any idea ?

Package Version: ?.?.?

Repro Steps

            var createOrder = await client.CreateOrder(new CreateOrderRequest()
            {
                IcebergQuantity = 100,
                Price = 230,
                Quantity = 0.6m,
                Side = OrderSide.Buy,
                Symbol = "ETHBTC",
                Type = OrderType.Market,
            });
Other Information

Other information here