Skip to contents

To make sense of the `cond` column see the output from `condition_codes()`.

Usage

quotes_history(symbols, start = NULL, end = NULL)

Arguments

symbols

One or more symbols.

start

Start date (YYYY-MM-DD or YYYY-MM-DDTHH:MM:SSZ).

end

End date (YYYY-MM-DD or YYYY-MM-DDTHH:MM:SSZ).

Value

A data frame.

Examples

if (FALSE) { # \dontrun{
# Quotes for current day (none if market not yet open).
quotes <- quotes_history("AAPL")
quotes_history(c("AAPL", "TSLA"))
# Quotes for specific time period.
quotes <- quotes_history("AAPL", "2024-08-01T09:00:00Z", "2024-08-01T09:05:00Z")
} # }