Provides current and historical rating for one or more securities
fmpc_security_ratings(symbols = c("AAPL"), limit = 100)
one or more symbols from the FMP available list that can be
found using fmpc_symbols_available
. A valid API token must be
set in order to enable functionality. See documentation for setting a token
under fmpc_set_token
.
limit results for each ticker
data frame of ratings data
if (FALSE) {
# Demo can pull AAPL
fmpc_set_token()
fmpc_security_ratings('AAPL')
# For multiple symbols, set a valid API Token
fmpc_set_token('FMPAPIKEY')
fmpc_security_ratings(c('AAPL','MSFT','SPY'))
}