ExchangeSharp icon indicating copy to clipboard operation
ExchangeSharp copied to clipboard

ExchangeSharp is a powerful, fast and easy to use .NET/C# API for interfacing with many crypto currency exchanges. REST and web sockets are supported.

Results 26 ExchangeSharp issues
Sort by recently updated
recently updated
newest added
trafficstars

When I'm using the tickersocket, I'm constantly seeing exceptions: System.ArgumentException HResult=0x80070057 Message=Splitting Bitfinex symbol 'LYMUSD' with symbol separator ':' must result in at least 2 pieces. Source=ExchangeSharp StackTrace: at ExchangeSharp.ExchangeAPI.OnSplitMarketSymbolToCurrencies(String...

bittrex websocket stuck on connect

Trying to get authenticated by Coinbase Advanced API Sandbox. ``` var exchange = await ExchangeAPI.GetExchangeAPIAsync(ExchangeName.Coinbase); exchange.LoadAPIKeysUnsecure(ConsumerKey, ConsumerSecret, ConsumerPassword); exchange.BaseUrlWebSocket = "wss://ws-feed-public.sandbox.exchange.coinbase.com"; exchange.BaseUrl = "https://api-public.sandbox.exchange.coinbase.com"; ``` Getting `Invalid passphrase` exception when...

Why are we using `double` for `BaseCurrencyVolume` and `QuoteCurrencyVolume` in `MarketCandle`? Shouldn't we use `decimal` instead? I've noticed that casting `baseVolume` and `convertVolume` to double the precision is lost. https://github.com/DigitalRuby/ExchangeSharp/blob/1729aaf896979adaeb90e5eb413aee05fb8d65e1/src/ExchangeSharp/API/Exchanges/_Base/ExchangeAPIExtensions.cs#L1099...

Hello, Thank you for providing the trading instrument. Could you please add a "special attention" "st" status field for coins in the class "ExchangeMarket"? It would be very helpful. Thank...

I tried to place an order using Gateio, but it told me that Gate.io only supports limit orders. Could I be doing something wrong? Or is that just how it...