Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions EODHistoricalData.Wrapper/Model/HistoricalStockPrice.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,27 +14,27 @@ public class HistoricalStockPrice
/// <summary>
///
/// </summary>
public double? Open { get; set; }
public decimal? Open { get; set; }
/// <summary>
///
/// </summary>
public double? High { get; set; }
public decimal? High { get; set; }
/// <summary>
///
/// </summary>
public double? Low { get; set; }
public decimal? Low { get; set; }
/// <summary>
///
/// </summary>
public double? Close { get; set; }
public decimal? Close { get; set; }
/// <summary>
///
/// </summary>
public double? Adjusted_close { get; set; }
public decimal? Adjusted_close { get; set; }
/// <summary>
///
/// </summary>
public double? Adjusted_low
public decimal? Adjusted_low
{
get
{
Expand All @@ -46,7 +46,7 @@ public double? Adjusted_low
/// <summary>
///
/// </summary>
public double? Adjusted_high
public decimal? Adjusted_high
{
get
{
Expand All @@ -58,7 +58,7 @@ public double? Adjusted_high
/// <summary>
///
/// </summary>
public double? Adjusted_open
public decimal? Adjusted_open
{
get
{
Expand All @@ -72,7 +72,7 @@ public double? Adjusted_open
/// </summary>
public long? Volume { get; set; }

private double? _k;
private decimal? _k;

private void SetK()
{
Expand Down