Enum AlphaVantageFunction
- Namespace
- Tudormobile.AlphaVantage
- Assembly
- Tudormobile.AlphaVantageAPI.dll
Specifies the available Alpha Vantage API functions for retrieving financial time series and market data.
public enum AlphaVantageFunction
Fields
DIVIDENDS = 7Historical and future (declared) dividend distributions.
EARNINGS_ESTIMATES = 8Annual and quarterly EPS and revenue estimates for the company of interest, along with analyst count and revision history.
GLOBAL_QUOTE = 5Represents the global quote endpoint or identifier, typically used to retrieve real-time market data for a specific security.
This value is commonly used in financial APIs to request the latest price and related information for a single stock or asset. The exact usage may depend on the context in which this identifier is applied.
SYMBOL_SEARCH = 6Specifies the available options for symbol search operations.
TIME_SERIES_DAILY = 0Represents the daily time series function for retrieving daily historical data from the API.
TIME_SERIES_MONTHLY = 3Represents monthly time series data, where each data point corresponds to a single month.
TIME_SERIES_MONTHLY_ADJUSTED = 4Represents the monthly adjusted time series data type for financial data queries.
TIME_SERIES_WEEKLY = 1Represents the weekly time series data interval for a financial or data API.
TIME_SERIES_WEEKLY_ADJUSTED = 2Represents the weekly adjusted time series data interval for financial data queries.
Use this value to request weekly time series data that includes adjustments such as splits and dividend corrections. This is typically used with APIs that support multiple time intervals for historical financial data.
TREASURY_YIELD = 9Represents the daily, weekly, and monthly US treasury yield of a given maturity timeline (e.g., 5 year, 30 year, etc).
Remarks
Use this enumeration to select the type of data to request from the Alpha Vantage API, such as daily, weekly, or monthly time series, adjusted data, global quotes, or symbol search results. The selected value determines the structure and content of the data returned by the API.