diff --git a/EODHistoricalData.Wrapper/Model/HistoricalStockPrice.cs b/EODHistoricalData.Wrapper/Model/HistoricalStockPrice.cs index d05e8ad..5069889 100644 --- a/EODHistoricalData.Wrapper/Model/HistoricalStockPrice.cs +++ b/EODHistoricalData.Wrapper/Model/HistoricalStockPrice.cs @@ -14,27 +14,27 @@ public class HistoricalStockPrice /// /// /// - public double? Open { get; set; } + public decimal? Open { get; set; } /// /// /// - public double? High { get; set; } + public decimal? High { get; set; } /// /// /// - public double? Low { get; set; } + public decimal? Low { get; set; } /// /// /// - public double? Close { get; set; } + public decimal? Close { get; set; } /// /// /// - public double? Adjusted_close { get; set; } + public decimal? Adjusted_close { get; set; } /// /// /// - public double? Adjusted_low + public decimal? Adjusted_low { get { @@ -46,7 +46,7 @@ public double? Adjusted_low /// /// /// - public double? Adjusted_high + public decimal? Adjusted_high { get { @@ -58,7 +58,7 @@ public double? Adjusted_high /// /// /// - public double? Adjusted_open + public decimal? Adjusted_open { get { @@ -72,7 +72,7 @@ public double? Adjusted_open /// public long? Volume { get; set; } - private double? _k; + private decimal? _k; private void SetK() {