Skip to content

Commit

Permalink
Handle potentially invalid data
Browse files Browse the repository at this point in the history
  • Loading branch information
viceroypenguin committed Nov 8, 2023
1 parent 1a5df9c commit cba629d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/AlphaVantage.Net/Indicators/IndicatorResponse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ public sealed class IndicatorDataPoint
{
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
public DateOnly Date { get; set; }
public decimal Value { get; set; }
public decimal? Value { get; set; }
#pragma warning restore CS1591 // Missing XML comment for publicly visible type or member
}

0 comments on commit cba629d

Please sign in to comment.