Skip to content

Commit

Permalink
Add "6h" candlestick interval conversion
Browse files Browse the repository at this point in the history
Fixes #82.
  • Loading branch information
sonvister committed Mar 27, 2018
1 parent b6d26bb commit 2fc4f81
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Binance/Extensions/StringExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ public static CandlestickInterval ToCandlestickInterval(this string s)
case "1h": return CandlestickInterval.Hour;
case "2h": return CandlestickInterval.Hours_2;
case "4h": return CandlestickInterval.Hours_4;
case "6h": return CandlestickInterval.Hours_6;
case "8h": return CandlestickInterval.Hours_8;
case "12h": return CandlestickInterval.Hours_12;
case "24h":
Expand Down

0 comments on commit 2fc4f81

Please sign in to comment.