Skip to content

Commit

Permalink
Fix incorrect values for OneWeek and FifteenDays in KlineInterval enum (
Browse files Browse the repository at this point in the history
#130)

Co-authored-by: DerrekR <DerrekR@DERREK>
  • Loading branch information
dRussell68 and DerrekR authored Jan 22, 2025
1 parent 91d6c04 commit 9074071
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Kraken.Net/Enums/KlineInterval.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ public enum KlineInterval
/// 1w
/// </summary>
[Map("10080")]
OneWeek = 60 * 60 * 7,
OneWeek = 60 * 60 * 24 * 7,
/// <summary>
/// 15d
/// </summary>
[Map("21600")]
FifteenDays = 60 * 60 * 15
FifteenDays = 60 * 60 * 24 * 15
}
}

0 comments on commit 9074071

Please sign in to comment.