author
int64
658
755k
date
stringdate
2012-06-12 08:34:29
2024-07-22 14:51:21
timezone
int64
-46,800
43.2k
hash
stringlengths
40
40
message
stringlengths
5
490
mods
listlengths
1
16
language
stringclasses
20 values
license
stringclasses
3 values
repo
stringlengths
5
68
original_message
stringlengths
12
491
329,089
02.02.2020 11:25:51
18,000
5ea3cb6f318782dc94bdd2028bd02767118fec92
fix MemoryStream disposed bug in Websockets when the connection breaks, the MemoryStream is disposed, so a new one needs to be created prev, it was only created once outside the loop now, it will be created with every loop
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/Utility/ClientWebSocket.cs", "new_path": "src/ExchangeSharp/Utility/ClientWebSocket.cs", "diff": "@@ -394,12 +394,12 @@ namespace ExchangeSharp\nprivate async Task ReadTask()\n{\nArraySegment<byte> receiveBuffer = new ArraySegment<byte>(new b...
C#
MIT License
jjxtra/exchangesharp
fix MemoryStream disposed bug in Websockets (#517) - when the connection breaks, the MemoryStream is disposed, so a new one needs to be created - prev, it was only created once outside the loop - now, it will be created with every loop
329,131
05.02.2020 00:09:22
21,600
8a94c439308314ce7c781a3d40f38c8dfaa75f15
Implement GetExchangeAPIFromClassName
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/_Base/ExchangeAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/_Base/ExchangeAPI.cs", "diff": "@@ -46,6 +46,8 @@ namespace ExchangeSharp\nprivate static readonly Dictionary<string, IExchangeAPI?> apis = new Dictionary<strin...
C#
MIT License
jjxtra/exchangesharp
Implement GetExchangeAPIFromClassName (#518)
329,089
11.02.2020 22:22:11
28,800
443a182f96d20c77fc5b8d182cb83e3b8b63492d
new NuGet 0.7.0
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -85,10 +85,10 @@ See [`WebSocket4NetClientWebSocket.cs`][websocket4net] for implementation detail\n### Nuget\n#### dotnet CLI\n-[`dotnet add package DigitalRuby.ExchangeSharp --version 0.6.4`][nuget]\n+[`dotnet ...
C#
MIT License
jjxtra/exchangesharp
new NuGet 0.7.0
329,089
04.03.2020 11:45:39
28,800
e33df709f002d73c6c566e587d4492bac1476fd5
Fix binance WS depth response model (int generated overflow error for some symbols, changed to long)
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/Models/MarketDepthDiffUpdate.cs", "new_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/Models/MarketDepthDiffUpdate.cs", "diff": "@@ -28,10 +28,10 @@ namespace ExchangeSharp.BinanceGroup\npublic string MarketSy...
C#
MIT License
jjxtra/exchangesharp
Fix binance WS depth response model (int generated overflow error for some symbols, changed to long) (#524)
329,089
11.03.2020 19:42:38
25,200
838e3a0a0160c974411698b3805c80f3553259b4
fixed WebSocket disconnected (NRE) bug upon connecting to a WS endpoint, sometimes the connection can be lost prior to the subscribe messages being sent check to make sure the WebSocket is still connected prior to sending each messageQueue
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/Utility/ClientWebSocket.cs", "new_path": "src/ExchangeSharp/Utility/ClientWebSocket.cs", "diff": "@@ -135,7 +135,9 @@ namespace ExchangeSharp\npublic Task SendAsync(ArraySegment<byte> buffer, WebSocketMessageType messageType, bool endOfMessag...
C#
MIT License
jjxtra/exchangesharp
fixed WebSocket disconnected (NRE) bug (#525) - upon connecting to a WS endpoint, sometimes the connection can be lost prior to the subscribe messages being sent - check to make sure the WebSocket is still connected prior to sending each messageQueue
329,089
17.03.2020 19:46:35
25,200
df5cbfda53bbc9b5437f248d1e4ae40038029f6b
new NuGet 0.7.1 skip BTSE during testing
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -86,10 +86,10 @@ See [`WebSocket4NetClientWebSocket.cs`][websocket4net] for implementation detail\n### Nuget\n#### dotnet CLI\n-[`dotnet add package DigitalRuby.ExchangeSharp --version 0.7.0`][nuget]\n+[`dotnet ...
C#
MIT License
jjxtra/exchangesharp
new NuGet 0.7.1 (#526) - skip BTSE during testing
329,149
22.03.2020 23:00:08
18,000
2127a7af36b179548ef0e7f848c1ef66958eb1d8
Added new private BitMEX methods: GetHistoricalTrades, GetCurrentPositions, CancelAllOrders, and Deadman
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/BitMEX/ExchangeBitMEXAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/BitMEX/ExchangeBitMEXAPI.cs", "diff": "@@ -389,6 +389,47 @@ namespace ExchangeSharp\nreturn candles;\n}\n+ public async Task<IEnumerable<ExchangeTrade>> ...
C#
MIT License
jjxtra/exchangesharp
Added new private BitMEX methods: GetHistoricalTrades, GetCurrentPositions, CancelAllOrders, and Deadman (#528)
329,149
05.04.2020 12:03:16
18,000
f8985e97506f85c8fabca1ce6ac7c8814a13a5cf
Support Amending Orders in Bulk
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/BitMEX/ExchangeBitMEXAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/BitMEX/ExchangeBitMEXAPI.cs", "diff": "@@ -596,7 +596,7 @@ namespace ExchangeSharp\nJToken token = await MakeJsonRequestAsync<JToken>(query, BaseUrl, pay...
C#
MIT License
jjxtra/exchangesharp
Support Amending Orders in Bulk (#532)
329,127
08.04.2020 00:42:20
-28,800
0ababfca4f23c24268dec88785d53980cd30352e
Digifinex: API improvements * add more servers and find the fastest one at runtime solve 10008 time error raise rate limit to 240 times per minute candle add `limit` parameter support * support `limit` parameter in GetRecentTradesAsync * Fixed resource competition in GetFastestUrl()
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/Digifinex/ExchangeDigifinexAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/Digifinex/ExchangeDigifinexAPI.cs", "diff": "@@ -2,6 +2,7 @@ using Newtonsoft.Json.Linq;\nusing System;\nusing System.Collections.Generic;\nusing S...
C#
MIT License
jjxtra/exchangesharp
Digifinex: API improvements (#531) * add more servers and find the fastest one at runtime solve 10008 time error raise rate limit to 240 times per minute candle add `limit` parameter support * support `limit` parameter in GetRecentTradesAsync * Fixed resource competition in GetFastestUrl()
329,089
14.04.2020 20:09:09
25,200
9415b282678977eec9872556c46533ea17e7fe5d
NDAX: fix Trades websocket there is a bug in OnGetTickersAsync() which will need to be fixed at some point changed OnGetMarketSymbolsMetadataAsync() to fill in _marketSymbolToInstrumentIdMapping changed EnsureInstrumentIdsAvailable() to use OnGetMarketSymbolsMetadataAsync() instead fixes OnGetTradesWebSocketAsync()
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/NDAX/ExchangeNDAXAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/NDAX/ExchangeNDAXAPI.cs", "diff": "@@ -60,7 +60,8 @@ namespace ExchangeSharp\nvar result = await MakeJsonRequestAsync<IEnumerable<Instrument>>(\"GetInstrumen...
C#
MIT License
jjxtra/exchangesharp
NDAX: fix Trades websocket (#534) - there is a bug in OnGetTickersAsync() which will need to be fixed at some point - changed OnGetMarketSymbolsMetadataAsync() to fill in _marketSymbolToInstrumentIdMapping - changed EnsureInstrumentIdsAvailable() to use OnGetMarketSymbolsMetadataAsync() instead - fixes OnGetTradesWebSocketAsync()
329,089
15.04.2020 17:39:11
25,200
4fc91413cb76b8eabdaaa5899a444a11ce747d3a
new NuGet 0.7.2
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -86,10 +86,10 @@ See [`WebSocket4NetClientWebSocket.cs`][websocket4net] for implementation detail\n### Nuget\n#### dotnet CLI\n-[`dotnet add package DigitalRuby.ExchangeSharp --version 0.7.1`][nuget]\n+[`dotnet ...
C#
MIT License
jjxtra/exchangesharp
new NuGet 0.7.2 (#535)
329,089
20.06.2020 19:00:19
14,400
b6969c43b718630f95a9c48e1f1dd089e75d3e96
new NuGet 0.7.3
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -86,10 +86,10 @@ See [`WebSocket4NetClientWebSocket.cs`][websocket4net] for implementation detail\n### Nuget\n#### dotnet CLI\n-[`dotnet add package DigitalRuby.ExchangeSharp --version 0.7.2`][nuget]\n+[`dotnet ...
C#
MIT License
jjxtra/exchangesharp
new NuGet 0.7.3 (#546)
329,151
24.06.2020 16:14:30
-10,800
c5383cf97033ef88ebe037e695619b7d8a6565da
amount is overridden, extra parameters are copyto payload also. extra parameters for loop is useless so it override only price without using key/value of extra parameters
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/Bitstamp/ExchangeBitstampAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/Bitstamp/ExchangeBitstampAPI.cs", "diff": "@@ -205,12 +205,6 @@ namespace ExchangeSharp\npayload[\"price\"] = order.Price.ToStringInvariant();\n}\n- ...
C#
MIT License
jjxtra/exchangesharp
amount is overridden, extra parameters are copyto payload also. extra parameters for loop is useless so it override only price without using key/value of extra parameters (#548)
329,099
08.09.2020 19:10:29
-10,800
b6f1ab3632f1ef9443755927f2c8b8b842bcdf01
Fix for Okex OnGetTradesWebSocketAsync Not unified property. On futures it's "qty", while on the other type of instruments it's "size".
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/OKGroup/OKGroupCommon.cs", "new_path": "src/ExchangeSharp/API/Exchanges/OKGroup/OKGroupCommon.cs", "diff": "@@ -227,9 +227,20 @@ namespace ExchangeSharp.OKGroup\nawait AddMarketSymbolsToChannel(_socket, \"/trade:{0}\", marketSym...
C#
MIT License
jjxtra/exchangesharp
Fix for Okex OnGetTradesWebSocketAsync (#552) Not unified property. On futures it's "qty", while on the other type of instruments it's "size".
329,149
28.11.2020 18:02:08
21,600
1b5dc7151359de6b246ab0cda2b360d266138637
Add Bybit
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -38,6 +38,7 @@ The following cryptocurrency exchanges are supported:\n| BL3P | x | x | R B | Trades stream does not send trade's ids. |\n| Bleutrade | x | x | |\n| BTSE | x | x | |\n+| Bybit | x | x | R | Has pu...
C#
MIT License
jjxtra/exchangesharp
Add Bybit (#560)
329,089
04.12.2020 14:29:40
28,800
e159457c9628425235ebf11be00afe023a9ef5a8
new NuGet 0.7.4
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -96,11 +96,11 @@ See [`WebSocket4NetClientWebSocket.cs`][websocket4net] for implementation detail\n#### dotnet CLI\n-[`dotnet add package DigitalRuby.ExchangeSharp --version 0.7.3`][nuget]\n+[`dotnet add package...
C#
MIT License
jjxtra/exchangesharp
new NuGet 0.7.4 (#562)
329,110
05.12.2020 22:51:17
-3,600
86537b275cefa337383dd78d04d3b0090295e5f8
Binance - add ClientOrderId support
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs", "new_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs", "diff": "@@ -557,6 +557,7 @@ namespace ExchangeSharp.BinanceGroup\n{\nDictionary<string, object> payload = aw...
C#
MIT License
jjxtra/exchangesharp
Binance - add ClientOrderId support (#563)
329,110
09.12.2020 00:01:06
-3,600
f92619b221079d72f886185952b482abf645e7a4
Binance - add support for FilledPartiallyAndCancelled order status
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs", "new_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs", "diff": "@@ -939,35 +939,30 @@ namespace ExchangeSharp.BinanceGroup\nClientOrderId = token[\"clientOrderId\"]...
C#
MIT License
jjxtra/exchangesharp
Binance - add support for FilledPartiallyAndCancelled order status (#564)
329,149
21.12.2020 13:03:41
21,600
63cb4e8f83c291e905f540de95b763be0ac042f7
OnGetOpenOrderDetailsAsync() uses new functionality in /v2/private/order
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/Bybit/ExchangeBybitAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/Bybit/ExchangeBybitAPI.cs", "diff": "@@ -620,10 +620,15 @@ namespace ExchangeSharp\nreturn positions;\n}\n- protected override async Task<IEnumerable<Excha...
C#
MIT License
jjxtra/exchangesharp
OnGetOpenOrderDetailsAsync() uses new functionality in /v2/private/order (#567)
329,133
06.01.2021 10:57:54
28,800
26412a18340d23fc4282d54a030c820821221685
Update Ticker Address Ticker address was a 404 error. This new address should return a valid response.
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/NDAX/ExchangeNDAXAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/NDAX/ExchangeNDAXAPI.cs", "diff": "@@ -30,7 +30,7 @@ namespace ExchangeSharp\nprotected override async Task<IEnumerable<KeyValuePair<string, ExchangeTicker>>...
C#
MIT License
jjxtra/exchangesharp
Update Ticker Address (#568) Ticker address was a 404 error. This new address should return a valid response.
329,110
09.01.2021 17:48:08
-3,600
641a142ad0b1f87f03c4ad342e2e05ad091020ca
Binance - fixed missing tradeId
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs", "new_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs", "diff": "@@ -993,6 +993,7 @@ namespace ExchangeSharp.BinanceGroup\nIsBuy = token[\"isBuyer\"].ConvertInvarian...
C#
MIT License
jjxtra/exchangesharp
Binance - fixed missing tradeId (#569)
329,142
20.02.2021 16:07:47
-3,600
e72c4d228468fc90425dafedb6f2888b550f1352
Kraken - confirm trading agreement for German residents, see
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/Kraken/ExchangeKrakenAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/Kraken/ExchangeKrakenAPI.cs", "diff": "@@ -719,6 +719,7 @@ namespace ExchangeSharp\n{ \"type\", (order.IsBuy ? \"buy\" : \"sell\") },\n{ \"ordertype\", o...
C#
MIT License
jjxtra/exchangesharp
Kraken - confirm trading agreement for German residents, see https://support.kraken.com/hc/en-us/articles/360000920026-Trading-agreement-required-error (#573) Co-authored-by: d2ro <d2ro@users.noreply.github.com>
329,089
20.03.2021 08:13:06
25,200
1a5aaf72ab6023b89e563397506add6ddf7ddf97
new NuGet 0.7.5
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -96,11 +96,11 @@ See [`WebSocket4NetClientWebSocket.cs`][websocket4net] for implementation detail\n#### dotnet CLI\n-[`dotnet add package DigitalRuby.ExchangeSharp --version 0.7.4`][nuget]\n+[`dotnet add package...
C#
MIT License
jjxtra/exchangesharp
new NuGet 0.7.5 (#576)
329,134
08.04.2021 02:34:51
-7,200
d4b9f7d3d5e7408934a4220b22be3bfd90c55f6d
Set Bittrex MarketSymbolIsReversed to false
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/Bittrex/ExchangeBittrexAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/Bittrex/ExchangeBittrexAPI.cs", "diff": "@@ -68,7 +68,7 @@ namespace ExchangeSharp\n\"WAVES_ASSET\",\n};\n- MarketSymbolIsReversed = true;\n+ MarketSym...
C#
MIT License
jjxtra/exchangesharp
#578 Set Bittrex MarketSymbolIsReversed to false (#579)
329,148
21.04.2021 21:45:34
21,600
df0692777365ae03abb7de5db8843ece0a714ba3
Kraken ticker web socket
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -13,7 +13,7 @@ Feel free to visit the discord channel at https://discord.gg/sHCUHH3 and chat wi\n- Many exchanges supported with public, private and web socket API\n- Easy to use and well documented code and API...
C#
MIT License
jjxtra/exchangesharp
Kraken ticker web socket
329,148
22.04.2021 14:25:45
21,600
d3e5a8631659d34acde042b7b165b0908e152f12
Gemini ticker web socket and symbol metadata fix
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/Gemini/ExchangeGeminiAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/Gemini/ExchangeGeminiAPI.cs", "diff": "@@ -11,11 +11,13 @@ THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI\n*/\nusing ...
C#
MIT License
jjxtra/exchangesharp
Gemini ticker web socket and symbol metadata fix
329,148
22.04.2021 15:22:08
21,600
18c8e8e8c456950a84d3b3a11cb2b39f75936c4b
Optimize gemini symbol metadata
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/Gemini/ExchangeGeminiAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/Gemini/ExchangeGeminiAPI.cs", "diff": "@@ -18,6 +18,7 @@ using System.Net;\nusing System.Text;\nusing System.Threading.Tasks;\nusing System.Web;\n+using ...
C#
MIT License
jjxtra/exchangesharp
Optimize gemini symbol metadata
329,148
22.04.2021 15:22:28
21,600
2d13b9f7e809bf1b5a99b89383c903093381837d
Bug fix Gemini markets if error
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/Gemini/ExchangeGeminiAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/Gemini/ExchangeGeminiAPI.cs", "diff": "@@ -172,6 +172,7 @@ namespace ExchangeSharp\n}\ncatch (Exception ex)\n{\n+ markets.Clear();\nLogger.Error(ex, \"Fa...
C#
MIT License
jjxtra/exchangesharp
Bug fix Gemini markets if error
329,148
22.04.2021 15:45:05
21,600
6e26842f6e1ebfcde8c15ed02c7e663e8fec73b2
Bug fix gemini web socket tickers
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/Gemini/ExchangeGeminiAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/Gemini/ExchangeGeminiAPI.cs", "diff": "@@ -392,30 +392,35 @@ namespace ExchangeSharp\n// fetch the last bid/ask/last prices\nif (token[\"changes\"] is JA...
C#
MIT License
jjxtra/exchangesharp
Bug fix gemini web socket tickers
329,148
22.04.2021 15:52:14
21,600
2b8556f90ab4c6086373aaff52c7ff69bb730dc2
Gemini symbol metadata from html error handling
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/Gemini/ExchangeGeminiAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/Gemini/ExchangeGeminiAPI.cs", "diff": "@@ -103,18 +103,32 @@ namespace ExchangeSharp\n{\nstring html = await RequestMaker.MakeRequestAsync(\"/rest-api\",...
C#
MIT License
jjxtra/exchangesharp
Gemini symbol metadata from html error handling
329,148
23.04.2021 09:44:06
21,600
7abe68e5db0458e75ab095d71a13d49989627404
Gemini enhance tickers
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/Gemini/ExchangeGeminiAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/Gemini/ExchangeGeminiAPI.cs", "diff": "@@ -355,7 +355,7 @@ namespace ExchangeSharp\nawait MakeJsonRequestAsync<JToken>(\"/order/cancel\", null, new Dicti...
C#
MIT License
jjxtra/exchangesharp
Gemini enhance tickers
329,148
23.04.2021 09:45:30
21,600
24f6ed8333a0af84571820c210891cde510ea7d9
Only publish Gemini if ticker bid less than equal ask
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/Gemini/ExchangeGeminiAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/Gemini/ExchangeGeminiAPI.cs", "diff": "@@ -384,7 +384,7 @@ namespace ExchangeSharp\nAction<IReadOnlyCollection<KeyValuePair<string, ExchangeTicker>>> cal...
C#
MIT License
jjxtra/exchangesharp
Only publish Gemini if ticker bid less than equal ask
329,148
23.04.2021 16:02:22
21,600
54ae6385f0b7fe63711e52f5f2c78c7b163ea51c
Gemini delta order book web socket
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/Gemini/ExchangeGeminiAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/Gemini/ExchangeGeminiAPI.cs", "diff": "@@ -593,6 +593,66 @@ namespace ExchangeSharp\n});\n}\n+ protected override async Task<IWebSocket> OnGetDeltaOrderB...
C#
MIT License
jjxtra/exchangesharp
Gemini delta order book web socket
329,148
23.04.2021 16:04:31
21,600
6b134bd1060c576d12cd68fe3f8759bc369d1c32
Clear state upon reconnection
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/Gemini/ExchangeGeminiAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/Gemini/ExchangeGeminiAPI.cs", "diff": "@@ -467,6 +467,8 @@ namespace ExchangeSharp\nreturn Task.CompletedTask;\n}, connectCallback: async (_socket) =>\n{...
C#
MIT License
jjxtra/exchangesharp
Clear state upon reconnection
329,148
23.04.2021 16:08:43
21,600
20a001edf3b1f1e18b8398efbe944846412aab83
Denote gemini web socket support
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -41,7 +41,7 @@ The following cryptocurrency exchanges are supported:\n| Bybit | x | x | R | Has public method for Websocket Positions\n| Coinbase | x | x | T R |\n| Digifinex | x | x | R B |\n-| Gemini | x | x |...
C#
MIT License
jjxtra/exchangesharp
Denote gemini web socket support
329,148
25.04.2021 15:02:42
21,600
fc7ce87d6b44d60177886a4782cac0793f0b23d1
Update readme with latest syntax
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -59,6 +59,10 @@ The following cryptocurrency services are supported:\n- Cryptowatch (partial)\n+Exchange constructors are private, to get access to an exchange in code use:\n+\n+`ExchangeAPI.GetExchangeAPI`.\n+\...
C#
MIT License
jjxtra/exchangesharp
Update readme with latest syntax
329,086
02.05.2021 06:34:25
-10,800
61819a8d94f9e32a42bf9f9053f21960fac0b32a
Update ExchangeKuCoinAPI.cs KuCoin API-KEY-V2 passphrase error fix. (Newly created all api-keys are V2) Caution: There is no support for the V1 key. Only V2 keys will be created after this change.
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/KuCoin/ExchangeKuCoinAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/KuCoin/ExchangeKuCoinAPI.cs", "diff": "@@ -70,8 +70,7 @@ namespace ExchangeSharp\n{\nrequest.AddHeader(\"KC-API-KEY\", PublicApiKey.ToUnsecureString());\...
C#
MIT License
jjxtra/exchangesharp
Update ExchangeKuCoinAPI.cs (#586) KuCoin API-KEY-V2 passphrase error fix. (Newly created all api-keys are V2) Caution: There is no support for the V1 key. Only V2 keys will be created after this change.
329,086
04.05.2021 06:17:06
-10,800
96fc005a600ff18dbe7a45f0d44ffe58c4368008
Updated Bittrex RestApi to V3
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/Bittrex/ExchangeBittrexAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/Bittrex/ExchangeBittrexAPI.cs", "diff": "@@ -12,109 +12,80 @@ THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI\nnames...
C#
MIT License
jjxtra/exchangesharp
Updated Bittrex RestApi to V3 (#587)
329,086
06.05.2021 05:08:57
-10,800
73f7032a3914a4fc2a150a1e682d983d47d08bcf
BittrexWS update + RestApi minor bug fixed + WS updated for reversed MarketName
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/Bittrex/ExchangeBittrexAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/Bittrex/ExchangeBittrexAPI.cs", "diff": "@@ -17,19 +17,22 @@ namespace ExchangeSharp\nusing System;\nusing System.Collections.Generic;\nusing System.Li...
C#
MIT License
jjxtra/exchangesharp
BittrexWS update (#590) + RestApi minor bug fixed + WS updated for reversed MarketName
329,086
06.05.2021 20:00:23
-10,800
a6d417e12d61d51964296cfea02066e6b3e81a68
KuCoin market order bugfix Fixes
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/KuCoin/ExchangeKuCoinAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/KuCoin/ExchangeKuCoinAPI.cs", "diff": "@@ -392,9 +392,17 @@ namespace ExchangeSharp\nvar payload = await GetNoncePayloadAsync();\npayload[\"clientOid\"] ...
C#
MIT License
jjxtra/exchangesharp
KuCoin market order bugfix (#591) Fixes #584
329,089
29.05.2021 11:23:33
25,200
463551acd5c11711eec7c2e90bfc810da6560d60
new NuGet 0.8.0
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -100,11 +100,11 @@ See [`WebSocket4NetClientWebSocket.cs`][websocket4net] for implementation detail\n#### dotnet CLI\n-[`dotnet add package DigitalRuby.ExchangeSharp --version 0.7.5`][nuget]\n+[`dotnet add packa...
C#
MIT License
jjxtra/exchangesharp
new NuGet 0.8.0 (#592)
329,096
29.05.2021 12:25:14
21,600
d1c5137c0d0ad5a0b0ae3d4cab764031f4c2403b
Use AltMarketSymbol to hanlde Kraken WebSocket symbol difference and Gemini lower case symbol names. Pass isWebsocket flag in console app.
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/Gemini/ExchangeGeminiAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/Gemini/ExchangeGeminiAPI.cs", "diff": "@@ -175,6 +175,7 @@ namespace ExchangeSharp\n}\ndecimal incrementSize = incrementNode.InnerText.Substring(0, incre...
C#
MIT License
jjxtra/exchangesharp
Use AltMarketSymbol to hanlde Kraken WebSocket symbol difference and Gemini lower case symbol names. Pass isWebsocket flag in console app. (#594)
329,089
05.06.2021 13:16:56
25,200
1356191b0e78da83e4d966eb4a9faf49d3b46ee8
Add Candles (OHLC) websocket support in ExchangeAPI * Add Candles (OHLC) websocket support in ExchangeAPI part of * changed GetCandlesWebSocketAsync() to allow for async callback
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/_Base/ExchangeAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/_Base/ExchangeAPI.cs", "diff": "@@ -178,6 +178,8 @@ namespace ExchangeSharp\nthrow new NotImplementedException();\nprotected virtual Task<ExchangeCloseMarginPos...
C#
MIT License
jjxtra/exchangesharp
Add Candles (OHLC) websocket support in ExchangeAPI (#596) * Add Candles (OHLC) websocket support in ExchangeAPI - part of #595 * changed GetCandlesWebSocketAsync() to allow for async callback
329,162
14.06.2021 22:32:17
-3,600
c7f2db5ad5081160636fd3582167a6756f02d1a1
Ignore Mac DS_Store * Update .gitignore Navigating to a folder using the "Finder" on Mac generates a .DS_Store file holding metadata about the folder (e.g. thumbnails etc.). These files can pollute your git commits and are annoying. * Update MovingAverageCalculator.cs Pull methods and expose accessors on base class for consistency.
[ { "change_type": "MODIFY", "old_path": ".gitignore", "new_path": ".gitignore", "diff": "@@ -457,3 +457,6 @@ launchSettings.json\ndist/\ndata/**\n!data/.gitkeep\n+\n+## Mac specific\n+.DS_Store\n" }, { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/Traders/MovingAverageCalculator...
C#
MIT License
jjxtra/exchangesharp
Ignore Mac DS_Store (#598) * Update .gitignore Navigating to a folder using the "Finder" on Mac generates a .DS_Store file holding metadata about the folder (e.g. thumbnails etc.). These files can pollute your git commits and are annoying. * Update MovingAverageCalculator.cs Pull methods and expose accessors on base class for consistency.
329,089
23.06.2021 06:20:38
36,000
e4c48ce4afddf4da5f35578b34d42ddcb4c42a4c
new NuGet 0.8.1
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -100,11 +100,11 @@ See [`WebSocket4NetClientWebSocket.cs`][websocket4net] for implementation detail\n#### dotnet CLI\n-[`dotnet add package DigitalRuby.ExchangeSharp --version 0.8.0`][nuget]\n+[`dotnet add packa...
C#
MIT License
jjxtra/exchangesharp
new NuGet 0.8.1 (#602)
329,099
14.07.2021 23:33:43
-10,800
507453812daa318287e4136ba545b7605d2252cd
Poloniex OnPlaceOrderAsync improvement. Added proper order status. Handled exception when order not filled using FOK. Small fixes in ParseOrderTrades. Updated tests.
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/Poloniex/ExchangePoloniexAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/Poloniex/ExchangePoloniexAPI.cs", "diff": "@@ -84,15 +84,26 @@ namespace ExchangeSharp\nreturn Task.CompletedTask;\n}\n- public ExchangeOrderResult P...
C#
MIT License
jjxtra/exchangesharp
Poloniex OnPlaceOrderAsync improvement. (#612) Added proper order status. Handled exception when order not filled using FOK. Small fixes in ParseOrderTrades. Updated tests.
329,159
22.07.2021 18:43:38
-7,200
1da81ae60dba41f40427f3e0980ef732795d95fa
Make market orders possible by removing price requirement
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/BL3P/ExchangeBL3PAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/BL3P/ExchangeBL3PAPI.cs", "diff": "@@ -252,10 +252,10 @@ namespace ExchangeSharp\nswitch (order.OrderType)\n{\ncase OrderType.Limit:\n- data[\"price_int\"] =...
C#
MIT License
jjxtra/exchangesharp
Make market orders possible by removing price requirement
329,099
22.07.2021 23:00:25
-10,800
4ac4ece56447cac17226811e8f9a06e5d07278f9
Poloniex order status fix
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/Poloniex/ExchangePoloniexAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/Poloniex/ExchangePoloniexAPI.cs", "diff": "@@ -178,7 +178,7 @@ namespace ExchangeSharp\norder.Fees += CalculateFees(tradeAmt, tradeRate, order.IsBuy,...
C#
MIT License
jjxtra/exchangesharp
Poloniex order status fix (#616)
329,148
23.07.2021 13:17:21
21,600
e3a5365b96bc261403ca9d316310b2d889c38168
Refactor to common create api method
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/_Base/ExchangeAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/_Base/ExchangeAPI.cs", "diff": "@@ -45,11 +45,54 @@ namespace ExchangeSharp\n#region Private methods\nprivate static readonly IReadOnlyCollection<Type> exchange...
C#
MIT License
jjxtra/exchangesharp
Refactor to common create api method
329,089
31.07.2021 17:46:33
25,200
971772534dc3fac1a55348f726ac97f47502bcc1
Add null checks for Order.Price
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/BL3P/ExchangeBL3PAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/BL3P/ExchangeBL3PAPI.cs", "diff": "@@ -252,9 +252,11 @@ namespace ExchangeSharp\nswitch (order.OrderType)\n{\ncase OrderType.Limit:\n+ if (order.Price == nul...
C#
MIT License
jjxtra/exchangesharp
Add null checks for Order.Price
329,089
08.08.2021 22:06:09
25,200
3d3d25eeb26c967b602c1ed0e6a7b722655ab6e0
Add missing REST methods from ExchangeAPI to IExchangeAPI
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/_Base/ExchangeAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/_Base/ExchangeAPI.cs", "diff": "@@ -743,6 +743,34 @@ namespace ExchangeSharp\nreturn null;\n}\n+ /// <summary>\n+ /// Gets the address to deposit to and applica...
C#
MIT License
jjxtra/exchangesharp
Add missing REST methods from ExchangeAPI to IExchangeAPI (#622)
329,128
12.08.2021 00:25:52
-3,600
b96452d10340486c9c9a7047379677434b79f480
Added parsing of fees for Kraken exchange ParseOrder method in the ExchangeKrakenAPI class will now parse the fee from the response and set it in the order result.
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/Kraken/ExchangeKrakenAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/Kraken/ExchangeKrakenAPI.cs", "diff": "@@ -206,6 +206,7 @@ namespace ExchangeSharp\norderResult.AmountFilled = order[\"vol_exec\"].ConvertInvariant<decim...
C#
MIT License
jjxtra/exchangesharp
Added parsing of fees for Kraken exchange (#625) ParseOrder method in the ExchangeKrakenAPI class will now parse the fee from the response and set it in the order result.
329,162
13.08.2021 00:08:11
-3,600
6f249beb56691e9018327d81b80e7b7bd80ff765
Fix Kraken WS orderbook updates and add checksum support
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/Kraken/ExchangeKrakenAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/Kraken/ExchangeKrakenAPI.cs", "diff": "@@ -1142,6 +1142,15 @@ namespace ExchangeSharp\nreturn marketSymbolList;\n}\n+ /// <summary>\n+ /// Handle Kraken ...
C#
MIT License
jjxtra/exchangesharp
Fix Kraken WS orderbook updates and add checksum support (#626)
329,162
17.08.2021 19:10:52
-3,600
9bb12d361c1be43751aa4b55bc119bbc20a111c2
Add trade count to MarketCandle, and scrape from Kraken Exchange
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/Kraken/ExchangeKrakenAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/Kraken/ExchangeKrakenAPI.cs", "diff": "@@ -720,7 +720,7 @@ namespace ExchangeSharp\nJProperty prop = json.Children().First() as JProperty;\nforeach (JTok...
C#
MIT License
jjxtra/exchangesharp
Add trade count to MarketCandle, and scrape from Kraken Exchange (#628)
329,146
17.08.2021 11:12:15
25,200
ed597197e9ec73eae21b4af79ab79dd4c13b593e
Keep order removals in Gemini order book deltas.
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/Gemini/ExchangeGeminiAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/Gemini/ExchangeGeminiAPI.cs", "diff": "@@ -642,9 +642,7 @@ namespace ExchangeSharp\ndecimal amount = change[2].ConvertInvariant<decimal>();\nSortedDictio...
C#
MIT License
jjxtra/exchangesharp
Keep order removals in Gemini order book deltas. (#629)
329,099
18.08.2021 04:40:11
-10,800
890025e55295098b76662858b80a484aaffdd508
Poloniex ParseOrderTrades Added null check when calculating average price.
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/Poloniex/ExchangePoloniexAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/Poloniex/ExchangePoloniexAPI.cs", "diff": "@@ -166,7 +166,7 @@ namespace ExchangeSharp\ndecimal tradeAmt = trade[\"amount\"].ConvertInvariant<decimal...
C#
MIT License
jjxtra/exchangesharp
Poloniex ParseOrderTrades (#630) Added null check when calculating average price.
329,089
23.08.2021 18:54:07
25,200
c7bd6df91645dc0d4a48ab640a488b07233e8770
Add missing properties from BaseAPI to IBaseAPI
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Common/IBaseAPI.cs", "new_path": "src/ExchangeSharp/API/Common/IBaseAPI.cs", "diff": "@@ -31,9 +31,22 @@ namespace ExchangeSharp\n/// <summary>\n/// Base interface for all API implementations\n/// </summary>\n- public interface IBaseAPI :...
C#
MIT License
jjxtra/exchangesharp
Add missing properties from BaseAPI to IBaseAPI (#632)
329,089
26.08.2021 17:29:18
25,200
ee1be42d50ac0ca34844ce4df659c5be53c36635
new NuGet 0.8.2
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -100,11 +100,11 @@ See [`WebSocket4NetClientWebSocket.cs`][websocket4net] for implementation detail\n#### dotnet CLI\n-[`dotnet add package DigitalRuby.ExchangeSharp --version 0.8.1`][nuget]\n+[`dotnet add packa...
C#
MIT License
jjxtra/exchangesharp
new NuGet 0.8.2 (#633)
329,089
29.08.2021 13:28:46
25,200
62df683146071be8f0d810b768373c50d468ced1
Add setters to IAPIRequestHandler properties
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Common/IAPIRequestMaker.cs", "new_path": "src/ExchangeSharp/API/Common/IAPIRequestMaker.cs", "diff": "@@ -151,31 +151,31 @@ namespace ExchangeSharp\n/// <summary>\n/// Base url for the request\n/// </summary>\n- string BaseUrl { get; }\n+...
C#
MIT License
jjxtra/exchangesharp
Add setters to IAPIRequestHandler properties (#635)
329,110
06.09.2021 16:23:17
-7,200
949ce1d7fefe9e14ecf3cc74e0a308a519177cd4
Gate.io: GetAmounts + GetAmountsAvailableToTrade
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/GateIo/ExchangeGateIoAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/GateIo/ExchangeGateIoAPI.cs", "diff": "@@ -264,6 +264,31 @@ namespace ExchangeSharp\nreturn candles;\n}\n+ protected override async Task<Dictionary<strin...
C#
MIT License
jjxtra/exchangesharp
Gate.io: GetAmounts + GetAmountsAvailableToTrade (#637)
329,099
10.09.2021 03:27:43
-10,800
733e54e89dde511e5251230970690f82352c6b93
Moving to OKEx V5 API. Updated methods: GetMarketSymbolsAsync GetMarketSymbolsMetadataAsync GetTickerAsync GetTickersAsync GetRecentTradesAsync
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/OKGroup/ExchangeOKExAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/OKGroup/ExchangeOKExAPI.cs", "diff": "@@ -11,6 +11,10 @@ THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI\n*/\nusing Exc...
C#
MIT License
jjxtra/exchangesharp
Moving to OKEx V5 API. (#638) Updated methods: GetMarketSymbolsAsync GetMarketSymbolsMetadataAsync GetTickerAsync GetTickersAsync GetRecentTradesAsync
329,156
13.09.2021 18:51:04
-7,200
21a90710400ee435ca1ff768dd87d3aa8f348024
Fix parsing Bitfinex ticker symbol
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/Bitfinex/ExchangeBitfinexAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/Bitfinex/ExchangeBitfinexAPI.cs", "diff": "@@ -123,7 +123,7 @@ namespace ExchangeSharp\nprotected override async Task<ExchangeTicker> OnGetTickerAsyn...
C#
MIT License
jjxtra/exchangesharp
Fix parsing Bitfinex ticker symbol (#640)
329,089
14.09.2021 17:08:44
25,200
7fcff44b43d88bb9e7bc259e306672dce490e655
Fixed setting Order.AveragePrice to null when Quantity is zero also fixed Binance statii: PendingCancel and Error also fixed fetching only Open orders on Coinbase OnGetOpenOrderDetailsAsync()
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/BL3P/ExchangeBL3PAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/BL3P/ExchangeBL3PAPI.cs", "diff": "@@ -335,7 +335,7 @@ namespace ExchangeSharp\nPrice = result.Price.Value,\nResult = result.Status.ToResult(result.TotalAmou...
C#
MIT License
jjxtra/exchangesharp
Fixed setting Order.AveragePrice to null when Quantity is zero (#646) - also fixed Binance statii: PendingCancel and Error - also fixed fetching only Open orders on Coinbase OnGetOpenOrderDetailsAsync()
329,156
18.09.2021 20:08:31
-7,200
a194c09ee5c58d7d4fe32c7f067f5252e9d86c52
[Poloniex] Parse withdrawalNumber * Fix parsing Bitfinex ticker symbol * Set order status * [Poloniex] Parse withdrawalNumber Fixes
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/Poloniex/ExchangePoloniexAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/Poloniex/ExchangePoloniexAPI.cs", "diff": "@@ -910,9 +910,13 @@ namespace ExchangeSharp\nparamsList.Add(withdrawalRequest.AddressTag);\n}\n- JToken t...
C#
MIT License
jjxtra/exchangesharp
[Poloniex] Parse withdrawalNumber (#650) * Fix parsing Bitfinex ticker symbol * Set order status * [Poloniex] Parse withdrawalNumber Fixes #649
329,156
20.09.2021 19:09:59
-7,200
7816c3bc1845cfdbc024c21f9c1f56169fd9ecc3
[Binance] Allow market order without price Set order CesultCode
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs", "new_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs", "diff": "@@ -547,7 +547,8 @@ namespace ExchangeSharp.BinanceGroup\nprotected override async Task<ExchangeOrde...
C#
MIT License
jjxtra/exchangesharp
[Binance] Allow market order without price (#653) Set order CesultCode
329,089
22.09.2021 14:11:09
25,200
2987311811c4ec463e0821a4fbc76c00db5f5a7e
Change binance UserDataStream classes back to internal reverts change made in while that change fixed the User Data Websocket for Binance, it is very binance specific OnUserDataWebSocketAsync() needs to be rewritten to be multi-exchange friendly
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/Models/UserDataStream.cs", "new_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/Models/UserDataStream.cs", "diff": "@@ -7,7 +7,7 @@ using Newtonsoft.Json;\nnamespace ExchangeSharp.BinanceGroup\n{\n- public clas...
C#
MIT License
jjxtra/exchangesharp
Change binance UserDataStream classes back to internal (#659) - reverts change made in #646 - while that change fixed the User Data Websocket for Binance, it is very binance specific - OnUserDataWebSocketAsync() needs to be rewritten to be multi-exchange friendly
329,156
23.09.2021 19:15:06
-7,200
41a56cddedfec1826d850db6fdeaba72fd12c9e4
[Coinbase] fix withdraw nonce
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/Coinbase/ExchangeCoinbaseAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/Coinbase/ExchangeCoinbaseAPI.cs", "diff": "@@ -557,7 +557,7 @@ namespace ExchangeSharp\nprotected override async Task<ExchangeWithdrawalResponse> OnW...
C#
MIT License
jjxtra/exchangesharp
[Coinbase] fix withdraw nonce (#660)
329,099
29.09.2021 01:17:02
-10,800
d9fc5634d46807de81d33fbe23658725ace369b0
Tests fix BinanceGroupCommon OnGetCurrenciesAsync fix. ExchangePoloniexAPI ParseOrderTrades handle ExchangeOrderResult.AmountFilled as nullable.
[ { "change_type": "MODIFY", "old_path": "ExchangeSharp.sln", "new_path": "ExchangeSharp.sln", "diff": "@@ -5,34 +5,34 @@ VisualStudioVersion = 16.0.29318.209\nMinimumVisualStudioVersion = 10.0.40219.1\nProject(\"{2150E333-8FDC-42A3-9474-1A3956D46DE8}\") = \"SolutionItems\", \"SolutionItems\", \"{1AA2...
C#
MIT License
jjxtra/exchangesharp
Tests fix (#664) BinanceGroupCommon OnGetCurrenciesAsync fix. ExchangePoloniexAPI ParseOrderTrades handle ExchangeOrderResult.AmountFilled as nullable.
329,089
28.09.2021 19:41:16
25,200
46259fca1b4b83fd801d14ea1cf8367fc8d4caac
implemented OnUserDataWebSocketAsync() on Coinbase removed try/catch from APIRequestMaker fixed console BuyOption DumpResponse() fixed OnGetOpenOrderDetailsAsync() statuses fixed OnGetMarketSymbolsAsync() to only return active symbols added RequestMaker to IBaseAPI improved docs on ExchangeOrderResult
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Common/APIRequestMaker.cs", "new_path": "src/ExchangeSharp/API/Common/APIRequestMaker.cs", "diff": "@@ -125,11 +125,11 @@ namespace ExchangeSharp\npublic IReadOnlyList<string> GetHeader(string name)\n{\n- try\n+ if (response.Headers.TryGe...
C#
MIT License
jjxtra/exchangesharp
implemented OnUserDataWebSocketAsync() on Coinbase (#665) - removed try/catch from APIRequestMaker - fixed console BuyOption DumpResponse() - fixed OnGetOpenOrderDetailsAsync() statuses - fixed OnGetMarketSymbolsAsync() to only return active symbols - added RequestMaker to IBaseAPI - improved docs on ExchangeOrderResult
329,156
01.10.2021 01:10:46
-7,200
4022ca4044ee01f04c724a8844cc01699e470889
[Kraken] Withdrawal, cleanup
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/Kraken/ExchangeKrakenAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/Kraken/ExchangeKrakenAPI.cs", "diff": "@@ -331,30 +331,6 @@ namespace ExchangeSharp\nreturn orders;\n}\n- //private async Task<IEnumerable<ExchangeOrderR...
C#
MIT License
jjxtra/exchangesharp
[Kraken] Withdrawal, cleanup (#670)
329,128
01.10.2021 00:46:05
-3,600
a01ebdde343cdb5f9372300b61aa2326efc0ba15
FTX namespace update Modified the namespace of the FTX exchange to be in exchangesharp
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/FTX/ExchangeFTXAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/FTX/ExchangeFTXAPI.cs", "diff": "@@ -5,7 +5,7 @@ using System.Linq;\nusing System.Text.RegularExpressions;\nusing System.Threading.Tasks;\n-namespace ExchangeS...
C#
MIT License
jjxtra/exchangesharp
FTX namespace update (#669) Modified the namespace of the FTX exchange to be in exchangesharp
329,144
01.10.2021 18:17:24
25,200
0e50b6a9153ccb9ae048447b8382610e5347e3f5
Update README.md - grammar fixes
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -74,7 +74,7 @@ On Windows (or manually):\n- Download the [latest binaries](https://github.com/jjxtra/ExchangeSharp/releases/latest) for your OS.\n- Unzip it into a folder that is in your environment variable `PA...
C#
MIT License
jjxtra/exchangesharp
Update README.md - grammar fixes (#672)
329,089
02.10.2021 16:01:40
25,200
9a2c51539a7a02af18ac53f748f3a888f0cda03c
new NuGet 0.9.0 updated exchange listing on README.md
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -20,14 +20,14 @@ Feel free to visit the discord channel at https://discord.gg/sHCUHH3 and chat wi\n### Exchanges\nThe following cryptocurrency exchanges are supported:\n-(Web socket key: T = tickers, R = trades,...
C#
MIT License
jjxtra/exchangesharp
new NuGet 0.9.0 (#671) - updated exchange listing on README.md
329,099
04.10.2021 00:09:58
-10,800
4b30c62575a6b4950cd79d9de7f2543343c20117
fix BinanceGroupCommon OnGetMarketSymbolsMetadataAsync
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs", "new_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs", "diff": "@@ -158,7 +158,7 @@ namespace ExchangeSharp.BinanceGroup\n*/\nvar markets = new List<ExchangeMarket>...
C#
MIT License
jjxtra/exchangesharp
fix BinanceGroupCommon OnGetMarketSymbolsMetadataAsync (#673)
329,099
06.10.2021 03:49:25
-10,800
4da6f4cee99765c791588c249f63a76b0b1f14ea
Moving to OKEx V5 API
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/OKGroup/ExchangeOKExAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/OKGroup/ExchangeOKExAPI.cs", "diff": "@@ -10,11 +10,12 @@ The above copyright notice and this permission notice shall be included in all c\nTHE SOFTWARE I...
C#
MIT License
jjxtra/exchangesharp
Moving to OKEx V5 API #2 (#674)
329,156
07.10.2021 18:41:42
-7,200
0fb4da63bb025ac651d58572d900e86d308944f1
FTX OnGetTickerAsync and OnWithdrawAsync
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/FTX/ExchangeFTXAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/FTX/ExchangeFTXAPI.cs", "diff": "@@ -325,6 +325,34 @@ namespace ExchangeSharp\nreturn tickers;\n}\n+ protected override async Task<ExchangeTicker> OnGetTickerA...
C#
MIT License
jjxtra/exchangesharp
FTX OnGetTickerAsync and OnWithdrawAsync (#675)
329,156
09.10.2021 00:55:12
-7,200
9532d633bb925f7a2386f5a95ac5756e9fb6cbb8
[FTX] Fix OnGetOrderDetailsAsync
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/FTX/ExchangeFTXAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/FTX/ExchangeFTXAPI.cs", "diff": "@@ -288,7 +288,7 @@ namespace ExchangeSharp\n/// <inheritdoc />\nprotected async override Task<ExchangeOrderResult> OnGetOrder...
C#
MIT License
jjxtra/exchangesharp
[FTX] Fix OnGetOrderDetailsAsync (#676)
329,099
10.10.2021 10:12:55
-10,800
efe0582a2ae748f76917b5b43390a06102f9ffa2
fix BinanceGroupCommon
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs", "new_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs", "diff": "@@ -203,18 +203,17 @@ namespace ExchangeSharp.BinanceGroup\nprotected override async Task<ExchangeTi...
C#
MIT License
jjxtra/exchangesharp
fix BinanceGroupCommon (#677)
329,089
11.10.2021 17:55:44
25,200
2acf765be51a052efc935606b0e753f5fd7b4c32
add Exchangeor.exchangeOrderResult.TradeDate nullable value to hold the DateTime of the trade/execution set value for exchanges that currently have trades implemented
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/BL3P/ExchangeBL3PAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/BL3P/ExchangeBL3PAPI.cs", "diff": "@@ -339,7 +339,8 @@ namespace ExchangeSharp\nAmountFilled = result.TotalAmount.Value,\nAveragePrice = result.AverageCost?....
C#
MIT License
jjxtra/exchangesharp
add Exchangeor.exchangeOrderResult.TradeDate (#678) - nullable value to hold the DateTime of the trade/execution - set value for exchanges that currently have trades implemented
329,089
19.10.2021 15:57:23
25,200
3a0acb2be0e98c7278327a3679fed239f5b19e35
add ExchangeOrderResult.UpdateSequence sequence that the order update was sent from the server, usually used to keep updates in order or for debugging purposes
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/Models/UserDataStream.cs", "new_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/Models/UserDataStream.cs", "diff": "@@ -94,6 +94,7 @@ namespace ExchangeSharp.BinanceGroup\nOrderDate = CryptoUtility.UnixTimeStam...
C#
MIT License
jjxtra/exchangesharp
add ExchangeOrderResult.UpdateSequence (#680) - sequence that the order update was sent from the server, usually used to keep updates in order or for debugging purposes
329,089
04.11.2021 18:31:42
25,200
65e9bef8e2d259f85b5464ec16f0424f01876878
added checks during cancel Order check to make sure the correct order is being cancelled on Binance and Coinbase pass through OrderRejectReason in Binance UserDataStream
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs", "new_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs", "diff": "@@ -724,11 +724,14 @@ namespace ExchangeSharp.BinanceGroup\nDictionary<string, object> payload = awa...
C#
MIT License
jjxtra/exchangesharp
added checks during cancel Order (#683) - check to make sure the correct order is being cancelled on Binance and Coinbase - pass through OrderRejectReason in Binance UserDataStream
329,099
08.11.2021 05:40:10
-7,200
ad6b98e7fa34ae1f790327cacb3820290315cb95
Moving to OKEx V5 WebSocket API * implemented OnGetTickersWebSocketAsync Okex * Update OnGetTradesWebSocketAsync Migration to V5 WS API * Update OnGetDeltaOrderBookWebSocketAsync Migration to V5 WS API * implemented OnGetOrderDetailsWebSocketAsync Okex * ParseOrder added the missing order result states
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -52,7 +52,7 @@ The following cryptocurrency exchanges are supported:\n| Livecoin | x | x | |\n| NDAX | x | x | T R |\n| OKCoin | x | x | R B |\n-| OKEx | x | x | R B |\n+| OKEx | x | x | R B O |\n| Poloniex | x ...
C#
MIT License
jjxtra/exchangesharp
Moving to OKEx V5 WebSocket API (#685) * implemented OnGetTickersWebSocketAsync Okex * Update OnGetTradesWebSocketAsync Migration to V5 WS API * Update OnGetDeltaOrderBookWebSocketAsync Migration to V5 WS API * implemented OnGetOrderDetailsWebSocketAsync Okex * ParseOrder added the missing order result states
329,089
08.11.2021 18:20:04
28,800
82e507ea7ca7b44e09e18bc8d0926e417e4e48a2
new NuGet 0.9.1 packaged README.md with NuGet
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -102,11 +102,11 @@ See [`WebSocket4NetClientWebSocket.cs`][websocket4net] for implementation detail\n#### dotnet CLI\n-[`dotnet add package DigitalRuby.ExchangeSharp --version 0.9.0`][nuget]\n+[`dotnet add packa...
C#
MIT License
jjxtra/exchangesharp
new NuGet 0.9.1 (#686) - packaged README.md with NuGet
329,099
13.11.2021 00:20:14
-7,200
922288bc496bd34609732969a86b58552f58f651
Update OnPlaceOrderAsync Okex
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -52,7 +52,7 @@ The following cryptocurrency exchanges are supported:\n| Livecoin | x | x | |\n| NDAX | x | x | T R |\n| OKCoin | x | x | R B |\n-| OKEx | x | x | R B O |\n+| OKEx | x | x | T R B O |\n| Poloniex ...
C#
MIT License
jjxtra/exchangesharp
Update OnPlaceOrderAsync Okex (#687)
329,099
14.11.2021 01:32:28
-7,200
c24ed064846e64ba335302549d6cba5e47e230e4
Update Okex OnPlaceOrderAsync Okex does not return order state with the response like most exchange does, so we need to get the order info with separate request.
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/OKGroup/ExchangeOKExAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/OKGroup/ExchangeOKExAPI.cs", "diff": "@@ -340,17 +340,8 @@ namespace ExchangeSharp\norder.ExtraParameters.CopyTo(payload);\nvar token = await MakeJsonRequ...
C#
MIT License
jjxtra/exchangesharp
Update Okex OnPlaceOrderAsync (#688) Okex does not return order state with the response like most exchange does, so we need to get the order info with separate request.
329,156
02.12.2021 02:49:04
-3,600
2ef1f50c419462999e658b265f6d65b93d465040
Withdrawal fee
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/Bitfinex/ExchangeBitfinexAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/Bitfinex/ExchangeBitfinexAPI.cs", "diff": "@@ -777,6 +777,8 @@ namespace ExchangeSharp\nresp.Id = result[0][\"withdrawal_id\"].ToStringInvariant();\n...
C#
MIT License
jjxtra/exchangesharp
Withdrawal fee (#691)
329,099
02.12.2021 03:49:44
-7,200
4cb94a288bc707dc1bebaa3a8acd16eb7f9a61a6
Implemented OnGetCandlesWebSocketAsync for BinanceGroup
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs", "new_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs", "diff": "@@ -1135,6 +1135,38 @@ namespace ExchangeSharp.BinanceGroup\n});\n}\n+ protected override async Task...
C#
MIT License
jjxtra/exchangesharp
Implemented OnGetCandlesWebSocketAsync for BinanceGroup (#692)
329,099
07.12.2021 22:06:24
-7,200
b48467b495136844e5e85c1583924d9f520a2d98
OKEx RateLimit Increased the rate limit to 20req/2sec. It's not the real limit, but somehow "averaged", because each endpoint has it's own limit.
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/OKGroup/ExchangeOKExAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/OKGroup/ExchangeOKExAPI.cs", "diff": "@@ -34,6 +34,11 @@ namespace ExchangeSharp\npublic string BaseUrlV5 { get; set; } = \"https://www.okex.com/api/v5\";...
C#
MIT License
jjxtra/exchangesharp
OKEx RateLimit (#694) Increased the rate limit to 20req/2sec. It's not the real limit, but somehow "averaged", because each endpoint has it's own limit.
329,156
08.12.2021 20:48:31
-3,600
46f355ca0d36afdfac4d9ceec44bb684c35d241d
Create exchange API by name
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/_Base/ExchangeAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/_Base/ExchangeAPI.cs", "diff": "@@ -405,6 +405,18 @@ namespace ExchangeSharp\nreturn (T)await InitializeAPIAsync(typeof(T));\n}\n+ /// <summary>\n+ /// Create a...
C#
MIT License
jjxtra/exchangesharp
Create exchange API by name (#695)
329,143
10.12.2021 17:41:31
10,800
eafc5a52e23308640ffc7e84004043b83963539d
[FIX] [Bitfinex] Submit stop order at margin account
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/Bitfinex/ExchangeBitfinexAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/Bitfinex/ExchangeBitfinexAPI.cs", "diff": "@@ -471,23 +471,30 @@ namespace ExchangeSharp\npayload[\"amount\"] = (await ClampOrderQuantity(marketSymbo...
C#
MIT License
jjxtra/exchangesharp
[FIX] [Bitfinex] Submit stop order at margin account (#698) (#701)
329,099
14.12.2021 00:09:47
-7,200
aab2fc046355a9309a4141eb89d64401de21bfe3
fix OKEx OnGetAmountsAsync For some reason Okex returns some small available balances with missing currency names, so we remove those.
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/OKGroup/ExchangeOKExAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/OKGroup/ExchangeOKExAPI.cs", "diff": "@@ -232,6 +232,7 @@ namespace ExchangeSharp\nvar token = await GetBalance();\nreturn token[0][\"details\"]\n.Select(...
C#
MIT License
jjxtra/exchangesharp
fix OKEx OnGetAmountsAsync (#706) For some reason Okex returns some small available balances with missing currency names, so we remove those.
329,143
14.12.2021 16:33:28
10,800
792318bfc9f917133349338c1ba2b13f9d00abd1
[FIX] [Bitfinex] Fixed market symbol separator
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/Bitfinex/ExchangeBitfinexAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/Bitfinex/ExchangeBitfinexAPI.cs", "diff": "@@ -62,7 +62,7 @@ namespace ExchangeSharp\n[\"ZEC\"] = \"zcash\",\n};\n- MarketSymbolSeparator = string.Em...
C#
MIT License
jjxtra/exchangesharp
[FIX] [Bitfinex] Fixed market symbol separator (#699) (#707)
329,089
15.12.2021 20:15:45
28,800
76e30d62f0b06957233084825389e12c061893f4
Update README.md description remove "well documented"
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -13,7 +13,7 @@ Feel free to visit the discord channel at https://discord.gg/sHCUHH3 and chat wi\n### Features\n- Many exchanges supported with public, private and web socket API\n-- Easy to use and well document...
C#
MIT License
jjxtra/exchangesharp
Update README.md description (#708) - remove "well documented"
329,089
03.01.2022 11:00:20
28,800
e96811c64df44902f84089cf202e1fffa4916e70
refactor ExchangeOrderBook.MergeOrderBookDelta()
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/_Base/ExchangeAPIExtensions.cs", "new_path": "src/ExchangeSharp/API/Exchanges/_Base/ExchangeAPIExtensions.cs", "diff": "@@ -52,21 +52,6 @@ namespace ExchangeSharp\nConcurrentDictionary<string, ExchangeOrderBook> fullBooks = new ...
C#
MIT License
jjxtra/exchangesharp
refactor ExchangeOrderBook.MergeOrderBookDelta() (#709)
329,089
05.01.2022 20:38:35
18,000
a1c8ef0e47c52782fe8807fa980706f070aa5777
new NuGet 0.9.2
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -104,11 +104,11 @@ See [`WebSocket4NetClientWebSocket.cs`][websocket4net] for implementation detail\n#### dotnet CLI\n-[`dotnet add package DigitalRuby.ExchangeSharp --version 0.9.1`][nuget]\n+[`dotnet add packa...
C#
MIT License
jjxtra/exchangesharp
new NuGet 0.9.2 (#710)
329,089
21.01.2022 23:34:15
18,000
3f1b463afde5c83248b0b4417fc0171312f0fd22
parse QuantityStepSize (base_increment) in Coinbase
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/Coinbase/ExchangeCoinbaseAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/Coinbase/ExchangeCoinbaseAPI.cs", "diff": "@@ -199,7 +199,8 @@ namespace ExchangeSharp\nIsActive = string.Equals(product[\"status\"].ToStringInvarian...
C#
MIT License
jjxtra/exchangesharp
parse QuantityStepSize (base_increment) in Coinbase (#715)
329,089
24.01.2022 14:24:46
18,000
6e327ab82aff0db6cdc0846bbdc651324e525e8b
remove excessive IsPostOnly check in ExchangeAPI.cs one too many IsPostOnly checks were added
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/_Base/ExchangeAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/_Base/ExchangeAPI.cs", "diff": "@@ -972,7 +972,6 @@ namespace ExchangeSharp\npublic virtual async Task<ExchangeOrderResult> PlaceOrderAsync(ExchangeOrderRequest...
C#
MIT License
jjxtra/exchangesharp
remove excessive IsPostOnly check in ExchangeAPI.cs (#717) - one too many IsPostOnly checks were added
329,089
27.01.2022 23:45:31
18,000
d277733dcae4ab7c5d2f9d10ac224036b37be169
log error on Huobi trade stream
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/Huobi/ExchangeHuobiAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/Huobi/ExchangeHuobiAPI.cs", "diff": "@@ -251,6 +251,8 @@ namespace ExchangeSharp\nif (token[\"status\"] != null)\n{\n+ if (token[\"status\"].ToStringLowerI...
C#
MIT License
jjxtra/exchangesharp
log error on Huobi trade stream (#719)
329,089
28.01.2022 17:54:12
18,000
2456a21a3a2d367e83b9b0c0f90a64680cafdc81
update websocket URL for ZB.com
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/ZBcom/ExchangeZBcomAPI.cs", "new_path": "src/ExchangeSharp/API/Exchanges/ZBcom/ExchangeZBcomAPI.cs", "diff": "@@ -22,7 +22,7 @@ namespace ExchangeSharp\npublic sealed partial class ExchangeZBcomAPI : ExchangeAPI\n{\npublic overr...
C#
MIT License
jjxtra/exchangesharp
update websocket URL for ZB.com (#720)
329,089
31.01.2022 16:29:02
18,000
72c5c61ca9b733eb21d7e54582bbfc7acdf8b952
parse Binance specific ExchangeMarket properties
[ { "change_type": "MODIFY", "old_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs", "new_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs", "diff": "@@ -162,12 +162,19 @@ namespace ExchangeSharp.BinanceGroup\nJToken allSymbols = obj[\"symbols\"];\nf...
C#
MIT License
jjxtra/exchangesharp
parse Binance specific ExchangeMarket properties (#725)