Class for retrieving all data related to a single ticker from the
Yahoo Finance API. Inherits get_history() from
YahooFinanceBase-class.
See also
Other historical data:
Indice-class,
Tickers,
yf_download_prices(),
yf_get_index_quotes()
Super class
yahoofinancer::YahooFinanceBase -> Ticker
Active bindings
valuation_measuresRetrieves valuation measures
recommendationsRelated symbols recommended by Yahoo Finance and their scores.
technical_insightsTechnical insights and indicators snapshot.
currencyCurrency code for the symbol.
exchange_nameShort name of the stock exchange.
full_exchange_nameFull name of the stock exchange.
first_trade_dateTimestamp of the first recorded trade.
regular_market_timeTimestamp of the last market trade.
timezoneTimezone code of the exchange.
exchange_timezone_nameFull timezone name of the exchange.
regular_market_priceCurrent regular market price.
fifty_two_week_high52-week high price.
fifty_two_week_low52-week low price.
regular_market_day_highHighest price during the current trading session.
regular_market_day_lowLowest price during the current trading session.
regular_market_volumeCurrent trading volume.
previous_closeClosing price of the previous trading day.
Methods
Inherited methods
Method get_income_statement()
Retrieve income statement data.
Usage
Ticker$get_income_statement(frequency = c("annual", "quarterly"))Returns
A tibble with columns date, period_type,
and income statement line items, or invisible(NULL) on failure.
Method get_balance_sheet()
Retrieve balance sheet data.
Usage
Ticker$get_balance_sheet(frequency = c("annual", "quarterly"))Returns
A tibble with columns date, period_type,
and balance sheet line items, or invisible(NULL) on failure.
Method get_cash_flow()
Retrieve cash flow statement data.
Usage
Ticker$get_cash_flow(frequency = c("annual", "quarterly"))Returns
A tibble with columns date, period_type,
and cash flow statement line items, or invisible(NULL) on failure.