Intra-day Security Prices

fmp_prices(
  symbol,
  interval = c("1min", "5min", "15min", "30min", "1hour", "4hour")
)

Arguments

symbol

character. A vector of stock symbols.

interval

character. Time resolution of price quotes

Value

a tibble of quotes of requested securities

Examples

# \donttest{

# hourly Apple stock prices
d <- fmp_prices('AAPL', interval = '1hour')
# }