Description Usage Arguments Details Value Examples
View source: R/stock-screener.R
Company Stock Screener
1 2 3 4 5 6 7 8 9 10 11 12 13 |
marketCapMoreThan |
|
marketCapLowerThan |
|
betaMoreThan |
|
betaLowerThan |
|
volumeMoreThan |
|
volumeLowerThan |
|
dividendMoreThan |
|
dividendLowerThan |
|
sector |
|
exchange |
|
limit |
|
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"
a tibble of stocks matching criteria
1 2 3 4 5 6 7 8 | 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')
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.