get_tickers_info {yfinancer} | R Documentation |
Get information for multiple tickers
Description
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. |
Details
See get_info
for more details on the company information.
Value
A list of information for each ticker
Examples
## Not run:
tech_tickers <- get_tickers(c("AAPL", "MSFT", "GOOG"))
tech_info <- get_tickers_info(tech_tickers)
## End(Not run)
[Package yfinancer version 0.1.3 Index]