fmp_screen_stocks: Company Stock Screener

Description Usage Arguments Details Value Examples

View source: R/stock-screener.R

Description

Company Stock Screener

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
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
)

Arguments

marketCapMoreThan

numeric. Default is NULL

marketCapLowerThan

numeric. Default is NULL

betaMoreThan

numeric. Default is NULL

betaLowerThan

numeric. Default is NULL

volumeMoreThan

numeric. Default is NULL

volumeLowerThan

numeric. Default is NULL

dividendMoreThan

numeric. Default is NULL

dividendLowerThan

numeric. Default is NULL

sector

character. See Details for avialable values

exchange

character. See Details for avialable values

limit

numeric. Default is NULL

Details

sector paramater can be anyone of the following:

exchange paramater can be anyone of the following:

Value

a tibble of stocks matching criteria

Examples

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')

jpiburn/fmpapi documentation built on Aug. 20, 2021, 12:51 a.m.