Company Stock Screener
fmp_screen_stocks( marketCapMoreThan = NULL, marketCapLowerThan = NULL, betaMoreThan = NULL, betaLowerThan = NULL, volumeMoreThan = NULL, volumeLowerThan = NULL, dividendMoreThan = NULL, dividendLowerThan = NULL, sector = NULL, exchange = NULL, limit = NULL )
marketCapMoreThan |
|
---|---|
marketCapLowerThan |
|
betaMoreThan |
|
betaLowerThan |
|
volumeMoreThan |
|
volumeLowerThan |
|
dividendMoreThan |
|
dividendLowerThan |
|
sector |
|
exchange |
|
limit |
|
a tibble of stocks matching criteria
sector
paramater can be anyone of the following:
"Consumer Cyclical"
"Energy"
"Technology"
"Industrials"
"Financial Services"
"Basic Materials"
"Communication Services"
"Consumer Defensive"
"Healthcare"
"Real Estate"
"Utilities"
"Industrial Goods"
"Financial"
"Services"
"Conglomerates"
exchange
paramater can be anyone of the following:
"nyse"
"nasdaq"
"amex"
"euronext"
"tsx"
"etf"
"mutual_fund"
# \donttest{ library(fmpapi) # small cap, high beta tech stocks d <- fmp_screen_stocks(marketCapLowerThan = 1e9, betaMoreThan = 2, sector = 'Technology') # mid cap healthcare stocks listed on the nasdaq d <- fmp_screen_stocks(marketCapMoreThan = 1e9, marketCapLowerThan = 1e10, sector = 'Healthcare', exchange = 'nasdaq') # }