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,148 | 09.02.2018 20:35:23 | 25,200 | be6708c58ad9086f8276b354b8a80cde8264ef73 | Fix Binance API end points | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeBinanceAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeBinanceAPI.cs",
"diff": "@@ -28,9 +28,9 @@ namespace ExchangeSharp\n{\npublic class ExchangeBinanceAPI : ExchangeAPI\n{\n- public override string BaseUrl { get... | C# | MIT License | jjxtra/exchangesharp | Fix Binance API end points |
329,129 | 10.02.2018 16:55:07 | -3,600 | dc05a6d7d33dc3ce14079efce7a3b3bb5417000d | Binance GetOpenOrders optimization
* Binance GetOpenOrderDetails optimization
the hack for Binance open order is not needed anymore, removed.
* Update ExchangeBinanceAPI.cs | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeBinanceAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeBinanceAPI.cs",
"diff": "@@ -310,60 +310,13 @@ namespace ExchangeSharp\nreturn ParseOrder(token);\n}\n- private IEnumerable<ExchangeOrderResult> GetOpenOrderDe... | C# | MIT License | jjxtra/exchangesharp | Binance GetOpenOrders optimization (#28)
* Binance GetOpenOrderDetails optimization
the hack for Binance open order is not needed anymore, removed.
* Update ExchangeBinanceAPI.cs |
329,148 | 10.02.2018 13:49:20 | 25,200 | e179256138261c33a367b51443d4ec32895e5ab9 | Remove time in force for market orders | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeBinanceAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeBinanceAPI.cs",
"diff": "@@ -284,9 +284,9 @@ namespace ExchangeSharp\npayload[\"side\"] = (order.IsBuy ? \"BUY\" : \"SELL\");\npayload[\"type\"] = order.OrderT... | C# | MIT License | jjxtra/exchangesharp | Remove time in force for market orders |
329,148 | 10.02.2018 13:58:02 | 25,200 | e01dacb1df31c60e0aee1c1087e7af05b9c38e5a | Consistant dictionary use | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeGdaxAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeGdaxAPI.cs",
"diff": "@@ -330,7 +330,7 @@ namespace ExchangeSharp\nif (order.OrderType != OrderType.Market)\n{\npayload[\"time_in_force\"] = \"GTC\"; // good til ... | C# | MIT License | jjxtra/exchangesharp | Consistant dictionary use |
329,148 | 11.02.2018 11:59:32 | 25,200 | 5ce8e759911dbb006719a3753fdf5c0e12c39a81 | Standardize naming, add license to missing files | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeAPI.cs",
"diff": "@@ -324,7 +324,7 @@ namespace ExchangeSharp\n/// A withdrawal request.\n/// </summary>\n/// <param name=\"withdrawalRequest\">The withdrawal request... | C# | MIT License | jjxtra/exchangesharp | Standardize naming, add license to missing files |
329,148 | 11.02.2018 21:35:33 | 25,200 | 8f973d5403863d72cffa2a02a35af4a2802547ed | Switch to one hour max for Binance historical trades | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeBinanceAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeBinanceAPI.cs",
"diff": "@@ -152,7 +152,7 @@ namespace ExchangeSharp\nif (sinceDateTime != null)\n{\nurl += \"&startTime=\" + CryptoUtility.UnixTimestampFromDa... | C# | MIT License | jjxtra/exchangesharp | Switch to one hour max for Binance historical trades |
329,148 | 11.02.2018 21:48:30 | 25,200 | 70c4c5a0005795f7c0bd849fbeefd96c72724352 | Fix Binance historical trades API | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeBinanceAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeBinanceAPI.cs",
"diff": "@@ -144,16 +144,20 @@ namespace ExchangeSharp\nstring baseUrl = \"/aggTrades?symbol=\" + symbol;\nstring url;\nList<ExchangeTrade> tra... | C# | MIT License | jjxtra/exchangesharp | Fix Binance historical trades API |
329,148 | 12.02.2018 16:47:44 | 25,200 | 5bad38b147e289c7ff2e290b92eaa77fa12d1d88 | Add limit param to candle API | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeAPI.cs",
"diff": "@@ -204,21 +204,23 @@ namespace ExchangeSharp\n/// Get candles (open, high, low, close)\n/// </summary>\n/// <param name=\"symbol\">Symbol to get ca... | C# | MIT License | jjxtra/exchangesharp | Add limit param to candle API |
329,148 | 12.02.2018 16:49:16 | 25,200 | 7dae7d6e59a3daf557e10a9546e0916bd93f74d2 | Tweak Binance request params to handle their buggy API | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeBinanceAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeBinanceAPI.cs",
"diff": "@@ -42,9 +42,9 @@ namespace ExchangeSharp\npublic ExchangeBinanceAPI()\n{\n// give binance plenty of room to accept requests\n- Reques... | C# | MIT License | jjxtra/exchangesharp | Tweak Binance request params to handle their buggy API |
329,087 | 15.02.2018 06:11:54 | 28,800 | 5bbce43c3abeaff4ed2dac16d9a0d762f9bdec5c | Kraken getTickers fix
* Fix bug in binance market orders
* Fix bug in binance market orders
* Skipping delisted tickers for kraken
* Updating comments
* Move .d filter into GetSymbols call
The base implementation of GetTickers does the same thing, so let's filter GetSymbols | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeKrakenAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeKrakenAPI.cs",
"diff": "@@ -155,7 +155,7 @@ namespace ExchangeSharp\n{\nJObject json = MakeJsonRequest<JObject>(\"/0/public/AssetPairs\");\nJToken result = Chec... | C# | MIT License | jjxtra/exchangesharp | Kraken getTickers fix (#35)
* Fix bug in binance market orders
* Fix bug in binance market orders
* Skipping delisted tickers for kraken
* Updating comments
* Move .d filter into GetSymbols call
The base implementation of GetTickers does the same thing, so let's filter GetSymbols |
329,126 | 15.02.2018 21:21:11 | -3,600 | 4439bdecbb39c3f31fcdc36c2d8cb0510bf1d803 | Implementing GetOpenOrderDetails for Kraken
* implementing GetOpenOrderDetails.
adding Price property to ExchangeOrderResult.
adding ParseOrder method for simplifying parsing orders.
* price on returned orders from exchanges.
* Fix divide by zero | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeBinanceAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeBinanceAPI.cs",
"diff": "@@ -531,7 +531,8 @@ namespace ExchangeSharp\n{\nAmount = token[\"origQty\"].ConvertInvariant<decimal>(),\nAmountFilled = token[\"execu... | C# | MIT License | jjxtra/exchangesharp | Implementing GetOpenOrderDetails for Kraken (#36)
* implementing GetOpenOrderDetails.
adding Price property to ExchangeOrderResult.
adding ParseOrder method for simplifying parsing orders.
* price on returned orders from exchanges.
* Fix divide by zero |
329,148 | 15.02.2018 13:33:27 | 25,200 | 1da8fd076478786a093d21dceba561bb66b9f83f | Complete TODO for average prices | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeBinanceAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeBinanceAPI.cs",
"diff": "@@ -532,12 +532,12 @@ namespace ExchangeSharp\nAmount = token[\"origQty\"].ConvertInvariant<decimal>(),\nAmountFilled = token[\"execut... | C# | MIT License | jjxtra/exchangesharp | Complete TODO for average prices |
329,148 | 17.02.2018 22:03:44 | 25,200 | bcc26143ac3bd147bf4513ed92c11b0331c8185e | Remove protected data dependancy
On Windows, data protection API is used.
On other platforms, the data is passed through as is. | [
{
"change_type": "MODIFY",
"old_path": "Console/ExchangeSharpConsole_Tests.cs",
"new_path": "Console/ExchangeSharpConsole_Tests.cs",
"diff": "@@ -99,6 +99,13 @@ namespace ExchangeSharpConsoleApp\n{\nthrow new ApplicationException(\"AES encryption test fail\");\n}\n+\n+ byte[] protectedData = DataPro... | C# | MIT License | jjxtra/exchangesharp | Remove protected data dependancy
On Windows, data protection API is used.
On other platforms, the data is passed through as is. |
329,108 | 21.02.2018 19:25:00 | -3,600 | c0de17d68c4aa7a92e117ffee2c8543719f1bc1b | write exchange test results to console | [
{
"change_type": "MODIFY",
"old_path": "Console/ExchangeSharpConsole_Tests.cs",
"new_path": "Console/ExchangeSharpConsole_Tests.cs",
"diff": "@@ -120,20 +120,25 @@ namespace ExchangeSharpConsoleApp\nIReadOnlyCollection<string> symbols = api.GetSymbols().ToArray();\nAssert(symbols != null && symbols.... | C# | MIT License | jjxtra/exchangesharp | write exchange test results to console (#41) |
329,148 | 21.02.2018 14:42:18 | 25,200 | b2004d933578e5f6d611c8d1d9ea8f8313341364 | Remove older tls protocols | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/BaseAPI.cs",
"new_path": "ExchangeSharp/API/BaseAPI.cs",
"diff": "@@ -174,7 +174,7 @@ namespace ExchangeSharp\n{\ntry\n{\n- ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 | SecurityProtocolType.Tls11 | SecurityProtocolType.... | C# | MIT License | jjxtra/exchangesharp | Remove older tls protocols |
329,148 | 21.02.2018 17:22:58 | 25,200 | 516ddc8d2f79c877fbd1fcecd03404e5a410186a | Add managed protection from mono
DataProtector is the common interface and should work on Windows, MAC and Linux now. | [
{
"change_type": "RENAME",
"old_path": "ExchangeSharp/CryptoUtility.cs",
"new_path": "ExchangeSharp/Utility/CryptoUtility.cs",
"diff": ""
},
{
"change_type": "RENAME",
"old_path": "ExchangeSharp/DataProtector.cs",
"new_path": "ExchangeSharp/Utility/DataProtector.cs",
"diff": "@@ ... | C# | MIT License | jjxtra/exchangesharp | Add managed protection from mono
DataProtector is the common interface and should work on Windows, MAC and Linux now. |
329,108 | 22.02.2018 17:37:08 | -3,600 | 268dee38a9bad091c8a55a65b0457642919bfc37 | replace AES ciphermode CFB | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/Utility/CryptoUtility.cs",
"new_path": "ExchangeSharp/Utility/CryptoUtility.cs",
"diff": "@@ -246,7 +246,7 @@ namespace ExchangeSharp\nvar key = new Rfc2898DeriveBytes(password, salt, 1024);\nAES.Key = key.GetBytes(AES.KeySize / 8);\nAES.IV = key... | C# | MIT License | jjxtra/exchangesharp | replace AES ciphermode CFB (#42) |
329,148 | 22.02.2018 10:20:09 | 25,200 | 1a6dfbd2d991d12dc2fce7f0e0411b6d4e6c5449 | Update nuget and fix comment | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeBittrexAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeBittrexAPI.cs",
"diff": "@@ -30,10 +30,9 @@ namespace ExchangeSharp\npublic string BaseUrl2 { get; set; } = \"https://bittrex.com/api/v2.0\";\nprivate BittrexS... | C# | MIT License | jjxtra/exchangesharp | Update nuget and fix comment |
329,108 | 22.02.2018 21:07:05 | -3,600 | d586594a08d1c6340085fa27a4161869a8cbcdb6 | RSACryptoServiceProvider does not support CspParameters outside of windows | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/Utility/ManagedProtection.cs",
"new_path": "ExchangeSharp/Utility/ManagedProtection.cs",
"diff": "@@ -279,9 +279,9 @@ namespace ExchangeSharp\n{\nlock (user_lock)\n{\n- CspParameters csp = new CspParameters();\n- csp.KeyContainerName = \"DAPI\";\... | C# | MIT License | jjxtra/exchangesharp | RSACryptoServiceProvider does not support CspParameters outside of windows |
329,148 | 22.02.2018 13:52:13 | 25,200 | be0a8bf7a9f705d4e0bb6687189ee39c193ef67e | Add mono boolean | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/Utility/CryptoUtility.cs",
"new_path": "ExchangeSharp/Utility/CryptoUtility.cs",
"diff": "@@ -32,6 +32,7 @@ namespace ExchangeSharp\nstatic CryptoUtility()\n{\nIsWindows = RuntimeInformation.IsOSPlatform(OSPlatform.Windows);\n+ IsMono = (Type.Get... | C# | MIT License | jjxtra/exchangesharp | Add mono boolean |
329,148 | 22.02.2018 13:54:10 | 25,200 | a9c00524c5094bfbd8fbd43f7d24cece91d2bc27 | Keep csp under Mono | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/Utility/ManagedProtection.cs",
"new_path": "ExchangeSharp/Utility/ManagedProtection.cs",
"diff": "@@ -279,22 +279,36 @@ namespace ExchangeSharp\n{\nlock (user_lock)\n{\n- // CspParameters csp = new CspParameters();\n- // csp.KeyContainerName = \"... | C# | MIT License | jjxtra/exchangesharp | Keep csp under Mono |
329,148 | 22.02.2018 19:26:09 | 25,200 | 227f7f57252186178fd798b5fcac9e685ec3ef12 | Remove un-needed allocations | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/Utility/DataProtector.cs",
"new_path": "ExchangeSharp/Utility/DataProtector.cs",
"diff": "@@ -90,37 +90,29 @@ namespace ExchangeSharp\nprivate static byte[] CryptOperationWindows(bool protect, byte[] data, byte[] optionalEntropy, DataProtectionSc... | C# | MIT License | jjxtra/exchangesharp | Remove un-needed allocations |
329,148 | 22.02.2018 19:27:39 | 25,200 | f04a267b8f30f9f43211de541ad0fc1cbc793af5 | Fix code overwritten in merge | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/Utility/DataProtector.cs",
"new_path": "ExchangeSharp/Utility/DataProtector.cs",
"diff": "@@ -405,23 +405,39 @@ namespace ExchangeSharp\nif (user == null)\n{\nlock (user_lock)\n+ {\n+ if (CryptoUtility.IsMono)\n{\nCspParameters csp = new CspParam... | C# | MIT License | jjxtra/exchangesharp | Fix code overwritten in merge |
329,148 | 22.02.2018 19:31:45 | 25,200 | bd1d226c267648b401674628da8751058d74fa14 | Move user and machine to static constructor | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/Utility/DataProtector.cs",
"new_path": "ExchangeSharp/Utility/DataProtector.cs",
"diff": "@@ -174,6 +174,31 @@ namespace ExchangeSharp\n// * SHA256 digest to ensure integrity\ninternal static class ManagedProtection\n{\n+ private static readonly ... | C# | MIT License | jjxtra/exchangesharp | Move user and machine to static constructor |
329,148 | 23.02.2018 15:39:20 | 25,200 | bbbad659fb9d8000a8aabbb42a78084c656b256c | Attempt to use full managed API, fallback to temp key | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/Utility/DataProtector.cs",
"new_path": "ExchangeSharp/Utility/DataProtector.cs",
"diff": "@@ -179,21 +179,26 @@ namespace ExchangeSharp\nstatic ManagedProtection()\n{\n- if (CryptoUtility.IsMono)\n+ try\n{\nCspParameters csp = new CspParameters()... | C# | MIT License | jjxtra/exchangesharp | Attempt to use full managed API, fallback to temp key |
329,108 | 24.02.2018 13:27:15 | -3,600 | abccf3bbe752240203c9c4ae50efd52ce7f4f5e7 | create keystore test | [
{
"change_type": "MODIFY",
"old_path": "Console/ExchangeSharpConsole_Tests.cs",
"new_path": "Console/ExchangeSharpConsole_Tests.cs",
"diff": "@@ -80,7 +80,7 @@ namespace ExchangeSharpConsoleApp\n}\n}\n- private static void TestEncryption()\n+ private static void TestAESEncryption()\n{\nbyte[] salt =... | C# | MIT License | jjxtra/exchangesharp | create keystore test (#44) |
329,148 | 24.02.2018 06:22:13 | 25,200 | bc3bad6a74cf9451d1fa0d6cebd3f5c986c86a62 | .NET core non Windows RSA fallback | [
{
"change_type": "MODIFY",
"old_path": "Console/ExchangeSharpConsole_Tests.cs",
"new_path": "Console/ExchangeSharpConsole_Tests.cs",
"diff": "@@ -16,6 +16,7 @@ using System.Diagnostics;\nusing System.IO;\nusing System.Linq;\nusing System.Security;\n+using System.Security.Cryptography;\nusing Exchang... | C# | MIT License | jjxtra/exchangesharp | .NET core non Windows RSA fallback |
329,148 | 24.02.2018 09:24:51 | 25,200 | c1626112a390d4c50fef2ce8c67be77c899e6b5f | Fix warning, add build instructions | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp.sln",
"new_path": "ExchangeSharp.sln",
"diff": "@@ -7,6 +7,15 @@ Project(\"{9A19103F-16F7-4668-BE54-9A1E7A4F7556}\") = \"ExchangeSharp\", \"ExchangeSh\nEndProject\nProject(\"{9A19103F-16F7-4668-BE54-9A1E7A4F7556}\") = \"ExchangeSharpConsole\", \"... | C# | MIT License | jjxtra/exchangesharp | Fix warning, add build instructions |
329,148 | 24.02.2018 09:35:37 | 25,200 | b1eace6b5ba8da567d270cb6ca2744f184b6d2b0 | More test summaries | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharpConsole/Console/ExchangeSharpConsole_Tests.cs",
"new_path": "ExchangeSharpConsole/Console/ExchangeSharpConsole_Tests.cs",
"diff": "@@ -50,6 +50,8 @@ namespace ExchangeSharpConsoleApp\n}\nprivate static void TestRateGate()\n+ {\n+ try\n{\nint times... | C# | MIT License | jjxtra/exchangesharp | More test summaries |
329,140 | 03.03.2018 01:35:38 | -7,200 | 1c9f1c630ce42701ba681cd9753655d698703730 | Fixed wrong calculation of AveragePrice | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeBinanceAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeBinanceAPI.cs",
"diff": "@@ -623,7 +623,7 @@ namespace ExchangeSharp\nOrderId = token[\"orderId\"].ToStringInvariant(),\nSymbol = token[\"symbol\"].ToStringInv... | C# | MIT License | jjxtra/exchangesharp | Fixed wrong calculation of AveragePrice (#46) |
329,148 | 06.03.2018 16:03:08 | 25,200 | c36c5c4ebc28271735806251bef84d612b635c97 | Update Bittrex.NET API | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeBittrexAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeBittrexAPI.cs",
"diff": "@@ -254,7 +254,7 @@ namespace ExchangeSharp\nreturn null;\n}\n- BittrexApiResult<int> result = this.SocketClient.SubscribeToAllMarketD... | C# | MIT License | jjxtra/exchangesharp | Update Bittrex.NET API |
329,148 | 10.03.2018 15:40:56 | 25,200 | d51225e715e65645f88eb58161fc13039a217af1 | Add decimal version of moving average calculator | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/Traders/MovingAverageCalculator.cs",
"new_path": "ExchangeSharp/Traders/MovingAverageCalculator.cs",
"diff": "@@ -33,11 +33,30 @@ namespace ExchangeSharp\nprivate double _previousMovingAverage;\nprivate double _previousExponentialMovingAverage;\n... | C# | MIT License | jjxtra/exchangesharp | Add decimal version of moving average calculator |
329,148 | 10.03.2018 15:48:00 | 25,200 | 5c1f9d6b971537f14eaee30cfaae4d1f580b1d0f | Common base class for moving averages | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/Traders/MovingAverageCalculator.cs",
"new_path": "ExchangeSharp/Traders/MovingAverageCalculator.cs",
"diff": "@@ -18,40 +18,37 @@ using System.Threading.Tasks;\nnamespace ExchangeSharp\n{\n- /// <summary>\n- /// Calculates a moving average value ... | C# | MIT License | jjxtra/exchangesharp | Common base class for moving averages |
329,140 | 13.03.2018 03:35:00 | -7,200 | 49a947582473145c10660b291e369dfac1755689 | Added QuantityStep and PriceStep to market metadata
* Fixed wrong calculation of AveragePrice
* Added QuantityStep and PriceStep to market metadata
Added QuantityStepSize and PriceStepSize to ExchangeMarket.
Asigned their values in GetSymbolsMetadata method where possible: Binance, Bitfinex, Gdax
* Update ExchangeBinanceAPI.cs
* Update ExchangeMarket.cs | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeBinanceAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeBinanceAPI.cs",
"diff": "@@ -127,8 +127,15 @@ namespace ExchangeSharp\nif (lotSizeFilter != null)\n{\nmarket.MinTradeSize = lotSizeFilter[\"minQty\"].ConvertIn... | C# | MIT License | jjxtra/exchangesharp | Added QuantityStep and PriceStep to market metadata (#57)
* Fixed wrong calculation of AveragePrice
* Added QuantityStep and PriceStep to market metadata
Added QuantityStepSize and PriceStepSize to ExchangeMarket.
Asigned their values in GetSymbolsMetadata method where possible: Binance, Bitfinex, Gdax
* Update ExchangeBinanceAPI.cs
* Update ExchangeMarket.cs |
329,092 | 13.03.2018 07:34:54 | 18,000 | 7e4dd782f7972a89bb7b8b82cef59dd89398d1fa | Name is required for Binance withdrawals | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeBinanceAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeBinanceAPI.cs",
"diff": "@@ -494,17 +494,31 @@ namespace ExchangeSharp\nCheckError(token);\n}\n+ /// <summary>A withdrawal request. Fee is automatically subtra... | C# | MIT License | jjxtra/exchangesharp | Name is required for Binance withdrawals (#59) |
329,148 | 14.03.2018 09:35:07 | 21,600 | 05c7cec46da3dc97f004d885fd074a87e3542b6a | Fix Binance API check error from bad pull request | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeBinanceAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeBinanceAPI.cs",
"diff": "@@ -540,16 +540,18 @@ namespace ExchangeSharp\nprivate void CheckError(JToken result)\n{\n- if (result != null && !(result is JArray) ... | C# | MIT License | jjxtra/exchangesharp | Fix Binance API check error from bad pull request |
329,141 | 14.03.2018 22:43:11 | -3,600 | f059894c1694f8dd9aeaeb40c7df6664660364cf | Implementation Fees Property in
* ExchangeOrderResult add Fees property
ExchangePoloniexAPI add Fees calculation in ParseOrder, ParseOrderFromTrades
* Update ExchangeOrderResult.cs | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangePoloniexAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangePoloniexAPI.cs",
"diff": "@@ -86,6 +86,15 @@ namespace ExchangeSharp\n{\norder.IsBuy = true;\n}\n+ // fee is a percentage taken from the traded amount rounded... | C# | MIT License | jjxtra/exchangesharp | Implementation Fees Property in (#62)
* ExchangeOrderResult add Fees property
ExchangePoloniexAPI add Fees calculation in ParseOrder, ParseOrderFromTrades
* Update ExchangeOrderResult.cs |
329,148 | 14.03.2018 15:57:22 | 21,600 | dce72a235eb06d4b242f994bfc634a6dce5c8d0a | Tweaks from Bitstamp pull request | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeBitstampAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeBitstampAPI.cs",
"diff": "@@ -24,11 +24,19 @@ namespace ExchangeSharp\n{\npublic override string BaseUrl { get; set; } = \"https://www.bitstamp.net/api/v2\";\... | C# | MIT License | jjxtra/exchangesharp | Tweaks from Bitstamp pull request |
329,148 | 14.03.2018 16:02:52 | 21,600 | cfd98dac6dd80c208b1a19dfbb82b7282d31e74d | A few more Bitstamp refactorings
Extension methods do not need the null check | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeBitstampAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeBitstampAPI.cs",
"diff": "@@ -17,7 +17,6 @@ using System.Linq;\nusing System.Net;\nusing Newtonsoft.Json.Linq;\n-\nnamespace ExchangeSharp\n{\npublic class Ex... | C# | MIT License | jjxtra/exchangesharp | A few more Bitstamp refactorings
Extension methods do not need the null check |
329,145 | 16.03.2018 15:28:59 | -3,600 | 1fd8afc954446a898360e39222ff005e55b53793 | Master
* Added support for xrp withdraw on bitstamp exchange
* added bch_withrawel
* Added support for withdrawel of BCH,LTC,ETH
For bitcoin also reverting to old v1 api because V2 not supporting it yet | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeBitstampAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeBitstampAPI.cs",
"diff": "@@ -391,5 +391,52 @@ namespace ExchangeSharp\nJToken obj = MakeJsonRequest<JToken>(\"/cancel_order/\", null, payload, \"POST\");\nCh... | C# | MIT License | jjxtra/exchangesharp | Master (#66)
* Added support for xrp withdraw on bitstamp exchange
* added bch_withrawel
* Added support for withdrawel of BCH,LTC,ETH
For bitcoin also reverting to old v1 api because V2 not supporting it yet |
329,148 | 16.03.2018 08:33:29 | 21,600 | 256deca3376de291d1b7311007babc4954d25fb1 | Cleanup pull request | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeBitstampAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeBitstampAPI.cs",
"diff": "@@ -403,25 +403,15 @@ namespace ExchangeSharp\nstring url = \"\";\nswitch (withdrawalRequest.Symbol)\n{\n- case \"XRP\":\n- url = \"... | C# | MIT License | jjxtra/exchangesharp | Cleanup pull request |
329,148 | 21.03.2018 09:27:29 | 21,600 | 054b6766e9916ee6a9d0a7a36ecd5fd218c5a534 | Pass extra order params to the rest of exchanges that support orders | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeBinanceAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeBinanceAPI.cs",
"diff": "@@ -378,6 +378,10 @@ namespace ExchangeSharp\npayload[\"timeInForce\"] = \"GTC\";\npayload[\"price\"] = order.Price;\n}\n+ foreach (va... | C# | MIT License | jjxtra/exchangesharp | Pass extra order params to the rest of exchanges that support orders |
329,148 | 25.03.2018 07:52:51 | 21,600 | a55ce45c223ec2d8daadde1082a9fd34efbc04ab | Fix poloniex orders broken in an earlier pull request | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangePoloniexAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangePoloniexAPI.cs",
"diff": "@@ -183,9 +183,8 @@ namespace ExchangeSharp\nreturn order;\n}\n- private List<ExchangeOrderResult> ParseOrderFromTrades(JArray trade... | C# | MIT License | jjxtra/exchangesharp | Fix poloniex orders broken in an earlier pull request |
329,116 | 25.03.2018 09:22:52 | 21,600 | 29567a99967e0ba2e6a982c11ecd81b140fa6f09 | Added basic Gdax support for GetTickersWebSocket | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeGdaxAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeGdaxAPI.cs",
"diff": "@@ -24,6 +24,7 @@ namespace ExchangeSharp\npublic class ExchangeGdaxAPI : ExchangeAPI\n{\npublic override string BaseUrl { get; set; } = \"h... | C# | MIT License | jjxtra/exchangesharp | Added basic Gdax support for GetTickersWebSocket (#76) |
329,092 | 28.03.2018 23:14:28 | 18,000 | 9b84114c769d483f10f7de4e29f100ed3960ad7d | * Begin work to standardize what all the elements of an ExchangeOrderResult mean.
* Process individual trades in a Binance order to determine the total fees and
currency of the fees.
* Fix Bittrex to populate the correct value for "Price" and include fees paid.
* Code cleanup in ExchangeOrderResult class | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeBinanceAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeBinanceAPI.cs",
"diff": "@@ -400,7 +400,37 @@ namespace ExchangeSharp\npayload[\"orderId\"] = pieces[1];\nJToken token = MakeJsonRequest<JToken>(\"/order\", Ba... | C# | MIT License | jjxtra/exchangesharp | * Begin work to standardize what all the elements of an ExchangeOrderResult mean. (#80)
* Process individual trades in a Binance order to determine the total fees and
currency of the fees.
* Fix Bittrex to populate the correct value for "Price" and include fees paid.
* Code cleanup in ExchangeOrderResult class |
329,148 | 29.03.2018 14:40:08 | 21,600 | b5d1f7bb6224508723f0ca19330fde720d70b4db | Fix unit test compile, switch them to .NET core | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp.sln",
"new_path": "ExchangeSharp.sln",
"diff": "@@ -16,7 +16,7 @@ Project(\"{2150E333-8FDC-42A3-9474-1A3956D46DE8}\") = \"SolutionItems\", \"SolutionIt\nREADME.md = README.md\nEndProjectSection\nEndProject\n-Project(\"{FAE04EC0-301F-11D3-BF4B-00C... | C# | MIT License | jjxtra/exchangesharp | Fix unit test compile, switch them to .NET core |
329,148 | 29.03.2018 17:03:32 | 21,600 | 86e52966a783edbaabdffc3e482405f76d41d52f | Refactor code and fix unit tests | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeBinanceAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeBinanceAPI.cs",
"diff": "@@ -402,10 +402,10 @@ namespace ExchangeSharp\nif (market != null)\n{\n// Binance has strict rules on which quantities are allowed. Th... | C# | MIT License | jjxtra/exchangesharp | Refactor code and fix unit tests |
329,092 | 30.03.2018 22:47:06 | 18,000 | cfaeef570565e101a1b36cbe821da36193c35859 | Added FeesCurrency to PoloniexAPI. Refactor duplicate code. (There's still lots of order parsing duplication) | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangePoloniexAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangePoloniexAPI.cs",
"diff": "@@ -106,11 +106,12 @@ namespace ExchangeSharp\n{\nOrderId = result[\"orderNumber\"].ToStringInvariant()\n};\n+\nJToken trades = resu... | C# | MIT License | jjxtra/exchangesharp | Added FeesCurrency to PoloniexAPI. Refactor duplicate code. (There's still lots of order parsing duplication) (#82) |
329,092 | 31.03.2018 10:20:18 | 18,000 | 669fc4240feddbc12c03baed22c206ec033f1f23 | Binance: Parse fees from fills when placing an order that fills instantly | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeBinanceAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeBinanceAPI.cs",
"diff": "@@ -372,15 +372,14 @@ namespace ExchangeSharp\npublic override ExchangeOrderResult PlaceOrder(ExchangeOrderRequest order)\n{\n- decima... | C# | MIT License | jjxtra/exchangesharp | Binance: Parse fees from fills when placing an order that fills instantly (#83) |
329,147 | 03.04.2018 20:33:31 | -3,600 | 8c5df9365d56f820e9b5b55b2f14074559fd2d28 | JPY and GBP pairs in Bitfinex
Since this family pairs have been included, GetSymbols() were throwing error. | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeBitfinexAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeBitfinexAPI.cs",
"diff": "@@ -129,7 +129,7 @@ namespace ExchangeSharp\npublic override IEnumerable<string> GetSymbols()\n{\n- return this.GetSymbolsMetadata()... | C# | MIT License | jjxtra/exchangesharp | JPY and GBP pairs in Bitfinex (#87)
Since this family pairs have been included, GetSymbols() were throwing error. |
329,092 | 05.04.2018 10:59:00 | 18,000 | ad6a87f63d5865be7be315ad5246a92253744b5b | Clamp Bittrex prices and quantities
* Pull up ClampOrderPrice/ClampOrderQuantity so that others sites may use it.
Add clamping to Bittrex.
Code cleanup in ExchangeMarket.
Add CalculatePrecision method to CryptoUtilities to assist in counting digits
after the decimal point.
* Return original order price/quantity if clamp can't find the market | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeAPI.cs",
"diff": "@@ -24,6 +24,8 @@ namespace ExchangeSharp\n{\nprivate static readonly Dictionary<string, IExchangeAPI> apis = new Dictionary<string, IExchangeAPI>(S... | C# | MIT License | jjxtra/exchangesharp | Clamp Bittrex prices and quantities (#88)
* Pull up ClampOrderPrice/ClampOrderQuantity so that others sites may use it.
Add clamping to Bittrex.
Code cleanup in ExchangeMarket.
Add CalculatePrecision method to CryptoUtilities to assist in counting digits
after the decimal point.
* Return original order price/quantity if clamp can't find the market |
329,084 | 08.04.2018 15:53:30 | -7,200 | 13adb388d32dfdfcac742e1351b9adb801e74d95 | Add the possibility to send market orders with Bitstamp
When the order type is Market:
we add "/market" in the url
we do not send the price | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeBitstampAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeBitstampAPI.cs",
"diff": "@@ -208,9 +208,17 @@ namespace ExchangeSharp\npublic override ExchangeOrderResult PlaceOrder(ExchangeOrderRequest order)\n{\nstring ... | C# | MIT License | jjxtra/exchangesharp | Add the possibility to send market orders with Bitstamp (#91)
When the order type is Market:
- we add "/market" in the url
- we do not send the price |
329,148 | 08.04.2018 09:12:44 | 21,600 | e89a284bb2ff214c7a48fb3df55d8340a7f37191 | Rename helper to maker | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/BaseAPI.cs",
"new_path": "ExchangeSharp/API/BaseAPI.cs",
"diff": "@@ -173,7 +173,7 @@ namespace ExchangeSharp\n/// <summary>\n/// API request maker\n/// </summary>\n- public IAPIRequestMaker RequestHelper\n+ public IAPIRequestMaker RequestMak... | C# | MIT License | jjxtra/exchangesharp | Rename helper to maker |
329,148 | 08.04.2018 10:19:07 | 21,600 | 59290195ff97bd79cccd4e2ebcd0deea480db41d | Fix bad implementation of rate limit property | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/BaseAPI.cs",
"new_path": "ExchangeSharp/API/BaseAPI.cs",
"diff": "@@ -179,8 +179,6 @@ namespace ExchangeSharp\nset { requestMaker = value ?? new APIRequestMaker(this); }\n}\n- RateGate IAPIRequestHandler.RateLimit => throw new NotImplementedE... | C# | MIT License | jjxtra/exchangesharp | Fix bad implementation of rate limit property |
329,148 | 08.04.2018 10:28:21 | 21,600 | c20af33716889b39b875e0a117d16e41dd50c3b0 | Standardize exceptions | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeAPI.cs",
"diff": "@@ -261,7 +261,7 @@ namespace ExchangeSharp\n/// <param name=\"endDate\">Optional end date to get candles for</param>\n/// <param name=\"limit\">Max... | C# | MIT License | jjxtra/exchangesharp | Standardize exceptions |
329,148 | 08.04.2018 10:33:19 | 21,600 | e957f218604733aab23d1001b54005b9873b77ce | Make unix epoch a constant | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/Utility/CryptoUtility.cs",
"new_path": "ExchangeSharp/Utility/CryptoUtility.cs",
"diff": "@@ -25,6 +25,8 @@ namespace ExchangeSharp\npublic static class CryptoUtility\n{\n+ private static readonly DateTime unixEpoch = new DateTime(1970, 1, 1, 0, ... | C# | MIT License | jjxtra/exchangesharp | Make unix epoch a constant |
329,148 | 10.04.2018 09:01:48 | 21,600 | a6f2d863f5d44f8a840c1ba89242c56fca75820e | Catch not supported ContinueTimeout on mono | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/APIRequestMaker.cs",
"new_path": "ExchangeSharp/API/APIRequestMaker.cs",
"diff": "@@ -64,7 +64,16 @@ namespace ExchangeSharp\nrequest.ContentType = this.api.RequestContentType;\nrequest.UserAgent = BaseAPI.RequestUserAgent;\nrequest.CachePoli... | C# | MIT License | jjxtra/exchangesharp | Catch not supported ContinueTimeout on mono |
329,148 | 21.04.2018 08:28:38 | 21,600 | b63fe00439345f674bfaef06080c0d7eb6a1e110 | Final async cleanup | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeBinanceAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeBinanceAPI.cs",
"diff": "@@ -413,7 +413,7 @@ namespace ExchangeSharp\n}\npayload[\"symbol\"] = pieces[0];\npayload[\"orderId\"] = pieces[1];\n- JToken token = ... | C# | MIT License | jjxtra/exchangesharp | Final async cleanup |
329,092 | 23.04.2018 09:54:13 | 18,000 | bfcdcf5a5b89283b77350dd2b44805fb8d30a39b | Re-add accidentally removed NotSupportedException on GetCurrencies at Bitfinex | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeBitfinexAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeBitfinexAPI.cs",
"diff": "@@ -710,6 +710,11 @@ namespace ExchangeSharp\n}\n}\n+ protected override Task<IReadOnlyDictionary<string, ExchangeCurrency>> OnGetCu... | C# | MIT License | jjxtra/exchangesharp | Re-add accidentally removed NotSupportedException on GetCurrencies at Bitfinex (#101) |
329,148 | 24.04.2018 09:09:31 | 21,600 | b24fb93040b2cca580fb0f57b40cc18d663c7aa7 | Websocket dispose fix | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/WebSocketWrapper.cs",
"new_path": "ExchangeSharp/API/WebSocketWrapper.cs",
"diff": "@@ -73,7 +73,7 @@ namespace ExchangeSharp\n{\ntry\n{\n- _ws.CloseAsync(WebSocketCloseStatus.NormalClosure, \"Dispose\", CancellationToken.None).Wait();\n+ _ws... | C# | MIT License | jjxtra/exchangesharp | Websocket dispose fix |
329,124 | 25.04.2018 16:05:09 | -7,200 | fb66a4e592c7b85608fe8971740feae6b871c5b8 | optimize ExchangeKrakenAPI.OnGetTickersAsync() | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeKrakenAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeKrakenAPI.cs",
"diff": "@@ -202,11 +202,32 @@ namespace ExchangeSharp\nreturn (from prop in result.Children<JProperty>() where !prop.Name.Contains(\".d\") selec... | C# | MIT License | jjxtra/exchangesharp | optimize ExchangeKrakenAPI.OnGetTickersAsync() (#105) |
329,148 | 25.04.2018 11:01:20 | 21,600 | 76434db7744d562f11f21626bde309d789c8893a | Pull request cleanup, standardize null checks for NormalizeSymbols | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeAPI.cs",
"diff": "@@ -188,7 +188,7 @@ namespace ExchangeSharp\n/// <returns>Normalized global symbol</returns>\npublic virtual string NormalizeSymbolGlobal(string sym... | C# | MIT License | jjxtra/exchangesharp | Pull request cleanup, standardize null checks for NormalizeSymbols |
329,113 | 25.04.2018 15:26:37 | 14,400 | 6e4de72895a25ebb3fe542c7904bcd8811cd09a4 | Add KuCoin Exchange
Notes: The GetCandles API is a PRIVATE call on Kucoin and requires an API Key and API Secret
The Cancel Order function has not been tested in production
See comments in code regarding OrderIds and Orginal Order Ids
See additional comments in code | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeAPI.cs",
"diff": "@@ -630,6 +630,11 @@ namespace ExchangeSharp\n/// </summary>\npublic const string Kraken = \"Kraken\";\n+ /// <summary>\n+ /// Kucoin\n+ /// </summa... | C# | MIT License | jjxtra/exchangesharp | Add KuCoin Exchange (#107)
Notes: The GetCandles API is a PRIVATE call on Kucoin and requires an API Key and API Secret
The Cancel Order function has not been tested in production
See comments in code regarding OrderIds and Orginal Order Ids
See additional comments in code |
329,148 | 25.04.2018 13:56:49 | 21,600 | 4e88df232dacdb80453c55e6c2de252f2014b3b3 | Pull request cleanup, make all decimal convert invariant normalize | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeAbucoinsAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeAbucoinsAPI.cs",
"diff": "@@ -87,16 +87,23 @@ namespace ExchangeSharp\nprotected override async Task<ExchangeTicker> OnGetTickerAsync(string symbol)\n{\nJToke... | C# | MIT License | jjxtra/exchangesharp | Pull request cleanup, make all decimal convert invariant normalize |
329,113 | 26.04.2018 15:01:17 | 14,400 | a8eb152449e1734b58f46450103c3af134f0def0 | Added TuxExchange
Notes: The GetOrder calls are incomplete because the API documentation is incomplete. See comments in code.
Cancel order *may* need an additional parameter and needs to be tested.
See addtional commensts in code.
Also fixed a bug in Kucoin returning wrong Amounts in ParseOrder | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeAPI.cs",
"diff": "@@ -644,5 +644,10 @@ namespace ExchangeSharp\n/// Poloniex\n/// </summary>\npublic const string Poloniex = \"Poloniex\";\n+\n+ /// <summary>\n+ /// ... | C# | MIT License | jjxtra/exchangesharp | Added TuxExchange (#109)
Notes: The GetOrder calls are incomplete because the API documentation is incomplete. See comments in code.
Cancel order *may* need an additional parameter and needs to be tested.
See addtional commensts in code.
--
Also fixed a bug in Kucoin returning wrong Amounts in ParseOrder |
329,148 | 26.04.2018 14:07:28 | 21,600 | c92d7629dd9632c53aa71cd7a5b0d139e6db1ba5 | Fix bug in comma locales for Bitfinex withdraw | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeBittrexAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeBittrexAPI.cs",
"diff": "@@ -665,7 +665,7 @@ namespace ExchangeSharp\n{\n// Example: https://bittrex.com/api/v1.1/account/withdraw?apikey=API_KEY¤cy=EAC&... | C# | MIT License | jjxtra/exchangesharp | Fix bug in comma locales for Bitfinex withdraw |
329,148 | 27.04.2018 15:43:04 | 21,600 | 08c9fec951e957ac660f91783d03df44f5906304 | Add donation totals | [
{
"change_type": "MODIFY",
"old_path": "README.md",
"new_path": "README.md",
"diff": "[](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=L67Q4KQN5DHLY)\n+Donation totals:\n+0.25 LTC\n+\n<a href='https://www.nuget.org... | C# | MIT License | jjxtra/exchangesharp | Add donation totals |
329,148 | 28.04.2018 20:49:40 | 21,600 | 37d41f3a22d2e1e46fedc8f7f06beb8790b8f9a4 | Pull request cleanup, refactor | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeAPI.cs",
"diff": "@@ -657,7 +657,7 @@ namespace ExchangeSharp\n/// <summary>\n/// Livecoin\n/// </summary>\n- public const string Okex = \"Livecoin\";\n+ public const... | C# | MIT License | jjxtra/exchangesharp | Pull request cleanup, refactor |
329,148 | 28.04.2018 22:07:37 | 21,600 | a14776b905a81512a75666aed181f1b6be70fd57 | Add info about new symbol param for order details and cancel order | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeAPI.cs",
"diff": "@@ -481,6 +481,7 @@ namespace ExchangeSharp\n/// Get order details\n/// </summary>\n/// <param name=\"orderId\">Order id to get details for</param>\... | C# | MIT License | jjxtra/exchangesharp | Add info about new symbol param for order details and cancel order |
329,148 | 28.04.2018 22:08:49 | 21,600 | 840c69b2094053902d80239b744eba4b334597d0 | Add invariant culture | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/Utility/CryptoUtility.cs",
"new_path": "ExchangeSharp/Utility/CryptoUtility.cs",
"diff": "@@ -98,7 +98,7 @@ namespace ExchangeSharp\n// fallback to float conversion, i.e. 1E-1 for a decimal conversion will fail\nstring stringValue = (jValue == nu... | C# | MIT License | jjxtra/exchangesharp | Add invariant culture |
329,148 | 29.04.2018 21:26:44 | 21,600 | 7215ce0756e9ece42b6fd3aa027882a7b5529ba7 | Move non-integration tests to unit test project | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharpTests/CryptoUtilityTests.cs",
"new_path": "ExchangeSharpTests/CryptoUtilityTests.cs",
"diff": "@@ -11,13 +11,19 @@ THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI\n*/\nusing System;\n+using System.IO;\n+using Sys... | C# | MIT License | jjxtra/exchangesharp | Move non-integration tests to unit test project |
329,148 | 29.04.2018 22:02:56 | 21,600 | 3866109d20b23baf25f57974448edb23ed0103e4 | Basic global symbol unit tests | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeAPI.cs",
"diff": "@@ -179,7 +179,7 @@ namespace ExchangeSharp\n{\nthrow new ArgumentException(\"Symbol must be non null and non empty\");\n}\n- string[] pieces = Norm... | C# | MIT License | jjxtra/exchangesharp | Basic global symbol unit tests |
329,158 | 02.05.2018 23:39:40 | -28,800 | 3ca25ab63b764d4606bfcf9e7ba6f98ed7631c22 | Add Huobi exchange
* Add Huobi exchange
* Revert "Add Huobi exchange"
This reverts commit
* Add Huobi exchange | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeAPI.cs",
"diff": "@@ -766,6 +766,11 @@ namespace ExchangeSharp\n/// </summary>\npublic const string Hitbtc = \"Hitbtc\";\n+ /// <summary>\n+ /// Huobi\n+ /// </summar... | C# | MIT License | jjxtra/exchangesharp | Add Huobi exchange (#119)
* Add Huobi exchange
* Revert "Add Huobi exchange"
This reverts commit 3adbc61409c26120cda15e2c740fe1b0a137365a.
* Add Huobi exchange |
329,148 | 02.05.2018 11:00:16 | 21,600 | eaabf291488ec49a6ac80d2f17962f0f6176eebe | Update nuget info | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/ExchangeSharp.csproj",
"new_path": "ExchangeSharp/ExchangeSharp.csproj",
"diff": "<PropertyGroup>\n<TargetFrameworks>netstandard2.0;netcoreapp2.0;net47</TargetFrameworks>\n<PackageId>DigitalRuby.ExchangeSharp</PackageId>\n- <Title>Exchange Sharp ... | C# | MIT License | jjxtra/exchangesharp | Update nuget info |
329,155 | 04.05.2018 23:14:10 | -7,200 | 9e5ca1b34b96f68b3921cacd8c969b53952a9ec7 | [Core] ConvertInvariant should always return UTC time | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/Utility/CryptoUtility.cs",
"new_path": "ExchangeSharp/Utility/CryptoUtility.cs",
"diff": "@@ -85,6 +85,11 @@ namespace ExchangeSharp\nreturn defaultValue;\n}\nT result;\n+ if (typeof(T) == typeof(DateTime))\n+ {\n+ result = (T)Convert.ChangeType(... | C# | MIT License | jjxtra/exchangesharp | [Core] ConvertInvariant should always return UTC time (#122) |
329,148 | 04.05.2018 16:42:31 | 21,600 | 61663710891820149e8565f3d76e237fe72c7bdb | Add comments and local unix timestamp methods | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/Utility/CryptoUtility.cs",
"new_path": "ExchangeSharp/Utility/CryptoUtility.cs",
"diff": "@@ -26,6 +26,7 @@ namespace ExchangeSharp\npublic static class CryptoUtility\n{\nprivate static readonly DateTime unixEpoch = new DateTime(1970, 1, 1, 0, 0,... | C# | MIT License | jjxtra/exchangesharp | Add comments and local unix timestamp methods |
329,148 | 04.05.2018 16:59:34 | 21,600 | 208559846d10c82fb1bc2aeea93fd8e59a58a715 | Make kind optional | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/Utility/CryptoUtility.cs",
"new_path": "ExchangeSharp/Utility/CryptoUtility.cs",
"diff": "@@ -74,7 +74,7 @@ namespace ExchangeSharp\n/// <param name=\"kind\">DateTime kind to convert the converted DateTime to, unspecified kind for no conversion</... | C# | MIT License | jjxtra/exchangesharp | Make kind optional |
329,148 | 04.05.2018 18:07:49 | 21,600 | b50d5e24d652c38dd229aa511365bb1278959c70 | Fix Poloniex to use local time where needed | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeGdaxAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeGdaxAPI.cs",
"diff": "@@ -185,7 +185,7 @@ namespace ExchangeSharp\n{\nDictionary<string, string> ticker = await MakeJsonRequestAsync<Dictionary<string, string>>(\... | C# | MIT License | jjxtra/exchangesharp | Fix Poloniex to use local time where needed |
329,155 | 05.05.2018 16:19:59 | -7,200 | 6a8c703379958a9584f2be47d3ec4d754aa6b859 | [Core] Poloniex Symbol is not reversed, add Symbol to KuCoin to allow GlobalSymbolToExchangeSymbol | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeKucoinAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeKucoinAPI.cs",
"diff": "@@ -33,6 +33,8 @@ namespace ExchangeSharp\n{\nRequestContentType = \"x-www-form-urlencoded\";\nNonceStyle = NonceStyle.UnixMillisecondsS... | C# | MIT License | jjxtra/exchangesharp | [Core] Poloniex Symbol is not reversed, add Symbol to KuCoin to allow GlobalSymbolToExchangeSymbol (#124) |
329,148 | 07.05.2018 16:46:45 | 21,600 | 044c3419f60e90d1cfb7131923b62403bd282c4c | Fix non-invariant tostring | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeBleutradeAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeBleutradeAPI.cs",
"diff": "@@ -324,7 +324,8 @@ namespace ExchangeSharp\n{\nExchangeOrderResult result = new ExchangeOrderResult() { Result = ExchangeAPIOrder... | C# | MIT License | jjxtra/exchangesharp | Fix non-invariant tostring |
329,148 | 07.05.2018 16:53:38 | 21,600 | 1aae7e333d760ea318de002e3e8dc63235e8172c | Normalize livecoin symbol, use tostringinvariant | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeLivecoinAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeLivecoinAPI.cs",
"diff": "@@ -289,12 +289,13 @@ namespace ExchangeSharp\nprotected override async Task<ExchangeOrderResult> OnPlaceOrderAsync(ExchangeOrderReq... | C# | MIT License | jjxtra/exchangesharp | Normalize livecoin symbol, use tostringinvariant |
329,148 | 07.05.2018 16:55:07 | 21,600 | ce7785b601cecb5fc427f290067ff3891a1f8a06 | Use RoundAmount | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeBitstampAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeBitstampAPI.cs",
"diff": "@@ -225,7 +225,7 @@ namespace ExchangeSharp\npayload[\"price\"] = order.Price.ToStringInvariant();\n}\n- payload[\"amount\"] = order... | C# | MIT License | jjxtra/exchangesharp | Use RoundAmount |
329,148 | 15.05.2018 11:26:20 | 21,600 | d959f91e808d774a0f3a27080cd5b7fe1c6c67f6 | Add safe market order function to ExchangeAPI | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeAPI.cs",
"diff": "@@ -689,6 +689,131 @@ namespace ExchangeSharp\nawait new SynchronizationContextRemover();\nreturn await OnWithdrawAsync(withdrawalRequest);\n}\n+\n+... | C# | MIT License | jjxtra/exchangesharp | Add safe market order function to ExchangeAPI |
329,148 | 17.05.2018 09:50:23 | 21,600 | 04793cda38ce0789b7e5039c47853729cdde2c93 | Set fees currency | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeGdaxAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeGdaxAPI.cs",
"diff": "@@ -45,6 +45,7 @@ namespace ExchangeSharp\ndecimal price = result[\"price\"].ConvertInvariant<decimal>();\ndecimal averagePrice = (amountFil... | C# | MIT License | jjxtra/exchangesharp | Set fees currency |
329,112 | 17.05.2018 16:01:44 | 18,000 | 27c645902e7b98a132f4687288b41ee8f85a5b3b | Add IExchangeAPI.GetOrderBookWebSocket method, Binance and Poloniex implementations, and console test. | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeAPI.cs",
"diff": "@@ -320,6 +320,15 @@ namespace ExchangeSharp\n/// <returns>Web socket, call Dispose to close</returns>\npublic virtual IDisposable GetTickersWebSock... | C# | MIT License | jjxtra/exchangesharp | Add IExchangeAPI.GetOrderBookWebSocket method, Binance and Poloniex implementations, and console test. (#135) |
329,148 | 18.05.2018 21:47:35 | 21,600 | 48725f0746cd06209bb837789f3942caa7d5b42e | More historical bug fixes
Gemini and Poloniex now use historical trade helper, the historical trade helper now supports going from oldest trades to newest (i.e. Gemini). | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeAPI.cs",
"diff": "@@ -196,6 +196,40 @@ namespace ExchangeSharp\npublic System.Func<DateTime, string> TimestampFunction { get; set; } // change date time to a url time... | C# | MIT License | jjxtra/exchangesharp | More historical bug fixes
Gemini and Poloniex now use historical trade helper, the historical trade helper now supports going from oldest trades to newest (i.e. Gemini). |
329,158 | 19.05.2018 23:27:51 | -28,800 | 7d432a52f76c5f8ff9a527bd70ca846a102ffc4a | Add Okex GetOrderBookWebSocket | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeOkexAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeOkexAPI.cs",
"diff": "@@ -22,6 +22,7 @@ namespace ExchangeSharp\npublic sealed class ExchangeOkexAPI : ExchangeAPI\n{\npublic override string BaseUrl { get; set; ... | C# | MIT License | jjxtra/exchangesharp | Add Okex GetOrderBookWebSocket (#137) |
329,148 | 19.05.2018 09:39:10 | 21,600 | acda1556ada07585a3dde2fb2b476e07aa2423ee | Historical trade helper and pull request cleanup | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeAPI.cs",
"diff": "@@ -185,6 +185,8 @@ namespace ExchangeSharp\nprotected class HistoricalTradeHelperState\n{\n+ private ExchangeAPI api;\n+\npublic System.Func<IEnume... | C# | MIT License | jjxtra/exchangesharp | Historical trade helper and pull request cleanup |
329,158 | 20.05.2018 03:10:47 | -28,800 | 97c5ad5c0eb2dde604d30eda7163053b72adff69 | Add Huobi GetOrderBookWebSocket | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeHuobiAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeHuobiAPI.cs",
"diff": "@@ -17,6 +17,8 @@ using System.Net;\nusing System.Text;\nusing System.Threading.Tasks;\nusing System.Linq;\n+using System.IO;\n+using Syst... | C# | MIT License | jjxtra/exchangesharp | Add Huobi GetOrderBookWebSocket (#141) |
329,148 | 19.05.2018 13:16:37 | 21,600 | 00e04dde1d3654540462017aac0c8273d270e635 | Pull request cleanup, gzip convenience method | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeHuobiAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeHuobiAPI.cs",
"diff": "@@ -289,19 +289,20 @@ namespace ExchangeSharp\n*/\ntry\n{\n- var str = Encoding.UTF8.GetString(Decompress(msg));\n+ var str = msg.UTF8Stri... | C# | MIT License | jjxtra/exchangesharp | Pull request cleanup, gzip convenience method |
329,148 | 19.05.2018 15:17:28 | 21,600 | 56bc7414b9caed68b4760fef2638af2029ad518c | Update nuget, remove redundant namespaces | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/BaseAPI.cs",
"new_path": "ExchangeSharp/API/BaseAPI.cs",
"diff": "@@ -357,7 +357,7 @@ namespace ExchangeSharp\n/// <param name=\"messageCallback\">Callback for messages</param>\n/// <param name=\"connectCallback\">Connect callback</param>\n//... | C# | MIT License | jjxtra/exchangesharp | Update nuget, remove redundant namespaces |
329,148 | 19.05.2018 20:16:34 | 21,600 | 4b08fa7cc3729bdfcd487206d532225e0bd019d8 | Tidy up example code | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharpConsole/Console/ExchangeSharpConsole.cs",
"new_path": "ExchangeSharpConsole/Console/ExchangeSharpConsole.cs",
"diff": "@@ -86,15 +86,11 @@ namespace ExchangeSharpConsoleApp\n{\nRunProcessEncryptedAPIKeys(dict);\n}\n- else if (dict.ContainsKey(\"po... | C# | MIT License | jjxtra/exchangesharp | Tidy up example code |
329,148 | 20.05.2018 15:14:45 | 21,600 | a6dd1d225397ffd7848b590dc7c8ff4dbab7a71f | Fix wrong ticker parsing | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeLivecoinAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeLivecoinAPI.cs",
"diff": "@@ -375,8 +375,8 @@ namespace ExchangeSharp\nvar split = token[\"symbol\"].ToStringInvariant().Split('/');\nreturn new ExchangeTicke... | C# | MIT License | jjxtra/exchangesharp | Fix wrong ticker parsing |
329,148 | 21.05.2018 12:45:56 | 21,600 | cf5b1690e4792e74a1439896f00560452eab682d | Removed Bittrex.net dependancy | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeAPI.cs",
"diff": "@@ -34,6 +34,7 @@ namespace ExchangeSharp\nprivate static readonly Dictionary<string, IExchangeAPI> apis = new Dictionary<string, IExchangeAPI>(Stri... | C# | MIT License | jjxtra/exchangesharp | Removed Bittrex.net dependancy |
329,148 | 21.05.2018 13:47:00 | 21,600 | f447d608d66bd3760e0895bc62206ed609f1230e | Add #define for SIGNALR package | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeBittrexAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeBittrexAPI.cs",
"diff": "@@ -10,6 +10,9 @@ The above copyright notice and this permission notice shall be included in all c\nTHE SOFTWARE IS PROVIDED \"AS IS\"... | C# | MIT License | jjxtra/exchangesharp | Add #define for SIGNALR package |
329,148 | 21.05.2018 21:41:11 | 21,600 | 63d69b1f2284a3e4647b28b2db697d0cfd7ec426 | Make tables for feature set | [
{
"change_type": "MODIFY",
"old_path": "README.md",
"new_path": "README.md",
"diff": "@@ -26,26 +26,30 @@ ExchangeSharp is a C# console app and framework for trading and communicating wi\nVisual Studio 2017 is required, along with either .NET 4.7 or .NET standard 2.0.\nThe following cryptocurrency e... | C# | MIT License | jjxtra/exchangesharp | Make tables for feature set |
329,148 | 21.05.2018 21:44:19 | 21,600 | 712cd045b084b8b91cfbfd70f38a6298d1c26ae6 | Fix column rendering | [
{
"change_type": "MODIFY",
"old_path": "README.md",
"new_path": "README.md",
"diff": "@@ -29,7 +29,7 @@ The following cryptocurrency exchanges are supported:\n(Web socket key: T = tickers, B = order book, O = orders)\n|Exchange Name |public REST|Private REST |Web Socket |\n-|------------------------... | C# | MIT License | jjxtra/exchangesharp | Fix column rendering |
329,092 | 23.05.2018 20:43:16 | 18,000 | 00c62edd62f52ac8e7f821727fb6bfebbc4710a4 | Support arbitrary new currencies for deposit/withdrawal at Bitfinex | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeBitfinexAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeBitfinexAPI.cs",
"diff": "@@ -41,43 +41,24 @@ namespace ExchangeSharp\n// List is from \"Withdrawal Types\" section https://docs.bitfinex.com/v1/reference#res... | C# | MIT License | jjxtra/exchangesharp | Support arbitrary new currencies for deposit/withdrawal at Bitfinex (#149) |
329,155 | 24.05.2018 16:24:51 | -7,200 | 5a967bd21ae55885711881ac434069d244541bcf | Checked my last commit again and it was still wrong... Sorry - This time it's correct | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeBinanceAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeBinanceAPI.cs",
"diff": "@@ -58,12 +58,12 @@ namespace ExchangeSharp\n// All pairs in Binance end with BTC, ETH, BNB or USDT\nif (symbol.EndsWith(\"BTC\") || s... | C# | MIT License | jjxtra/exchangesharp | Checked my last commit again and it was still wrong... Sorry - This time it's correct (#151) |
329,132 | 24.05.2018 22:52:52 | -10,800 | 262b1ce34c414608e67a5e32643f647ba23acaf8 | Fixed commission deserialization for Bittrex API | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ExchangeBittrexAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ExchangeBittrexAPI.cs",
"diff": "@@ -365,7 +365,7 @@ namespace ExchangeSharp\norder.Result = amountFilled == amount ? ExchangeAPIOrderResult.Filled : (amountFilled == ... | C# | MIT License | jjxtra/exchangesharp | Fixed commission deserialization for Bittrex API (#152) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.