Skip to contents

Retrieves company information from Yahoo Finance for multiple specified ticker symbols.

Usage

get_tickers_info(
  tickers_obj,
  modules = "summaryProfile",
  output = c("tibble", "response", "request"),
  proxy = NULL
)

Arguments

tickers_obj

A tickers object created with get_tickers()

modules

Character vector of module names to retrieve. Default is "summaryProfile". See section "Available Modules" for common options.

output

The type of output to return. Can be "tibble" (default), "list" (raw parsed JSON), "response" (httr2 response), or "request" (httr2 request).

proxy

Optional proxy settings for the request.

Value

A list of information for each ticker

Details

See get_info for more details on the company information.

Examples

if (FALSE) { # \dontrun{
tech_tickers <- get_tickers(c("AAPL", "MSFT", "GOOG"))
tech_info <- get_tickers_info(tech_tickers)
} # }