diff --git a/CryptoExchange.Net/SharedApis/Enums/SharedKlineInterval.cs b/CryptoExchange.Net/SharedApis/Enums/SharedKlineInterval.cs
index 829ca12..4c2a4d1 100644
--- a/CryptoExchange.Net/SharedApis/Enums/SharedKlineInterval.cs
+++ b/CryptoExchange.Net/SharedApis/Enums/SharedKlineInterval.cs
@@ -5,6 +5,14 @@
///
public enum SharedKlineInterval
{
+ ///
+ /// 1 min
+ ///
+ OneMinute = 60,
+ ///
+ /// 3 min
+ ///
+ ThreeMinutes = 60 * 3,
///
/// 5 min
///
@@ -14,10 +22,34 @@
///
FifteenMinutes = 60 * 15,
///
+ /// Thirty minutes
+ ///
+ ThirtyMinutes = 60 * 30,
+ ///
/// 1 hour
///
OneHour = 60 * 60,
///
+ /// 2 hours
+ ///
+ TwoHours = 60 * 60 * 2,
+ ///
+ /// 4 hours
+ ///
+ FourHours = 60 * 60 * 4,
+ ///
+ /// 6 hours
+ ///
+ SixHours = 60 * 60 * 6,
+ ///
+ /// 8 hours
+ ///
+ EightHours = 60 * 60 * 8,
+ ///
+ /// 12 hours
+ ///
+ TwelveHours = 60 * 60 * 12,
+ ///
/// 1 day
///
OneDay = 60 * 60 * 24,