Analyst details for one or more securities includes earnings estimates, earnings surprises, stock grade, analyst recommendations, and company press releases
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
.
can be one of: 'surprise' for earnings surprise, 'grade' for stock grade', 'estimateAnnl' for analysts annual estimates, 'estimateQtr' for analysts quarterly estimate, 'recommend' for analyst recommendations, and 'press' for company press releases
limit results for each ticker
data frame of ratings data
if (FALSE) {
# Demo can pull AAPL
fmpc_set_token()
fmpc_analyst_outlook('AAPL')
# For multiple symbols, set a valid API Token
fmpc_set_token('FMPAPIKEY')
fmpc_analyst_outlook(c('AAPL','MSFT','SPY'))
}