Class TimeSeriesData
- Namespace
- Tudormobile.AlphaVantage.Entities
- Assembly
- Tudormobile.AlphaVantageAPI.dll
Represents price and volume data for a single time period in a financial time series.
public class TimeSeriesData : IEntity
- Inheritance
-
TimeSeriesData
- Implements
- Inherited Members
Remarks
This class contains the standard OHLCV (Open, High, Low, Close, Volume) data points commonly used in financial analysis and charting. All price values are represented as decimals for precision, while volume is represented as a long integer to accommodate large trading volumes.
Constructors
TimeSeriesData()
public TimeSeriesData()
Properties
Close
Gets the closing price for the time period.
public decimal Close { get; init; }
Property Value
- decimal
The final price at which the security traded during the time period.
High
Gets the highest price reached during the time period.
public decimal High { get; init; }
Property Value
- decimal
The maximum price at which the security traded during the time period.
Low
Gets the lowest price reached during the time period.
public decimal Low { get; init; }
Property Value
- decimal
The minimum price at which the security traded during the time period.
Open
Gets the opening price for the time period.
public decimal Open { get; init; }
Property Value
- decimal
The price at which the security first traded during the time period.
Volume
Gets the total trading volume for the time period.
public long Volume { get; init; }
Property Value
- long
The total number of shares or contracts traded during the time period.