Learn R Programming

eodhd (version 1.0.4)

stock_market_screener: Stock market screener

Description

This function retrieves stock market screener from the API.

Usage

stock_market_screener(
  api_token,
  sort = NULL,
  filters = NULL,
  limit = NULL,
  signals = NULL,
  offset = NULL
)

Value

A list containing the stock market screener.

Arguments

api_token

The API token for authentication.

sort

Sorts all fields with type ‘Number’ in ascending/descending order.

filters

Filters out tickers by different fields.

limit

The number of results should be returned with the query.

signals

Filter out tickers by signals, the calculated fields.

offset

The offset of the data.

Examples

Run this code
api_token <- "demo"
sort <- "market_capitalization.desc"
filters <- NULL
limit <- "1"
signals <- "bookvalue_neg"
offset <- "50"
result <- stock_market_screener(api_token, sort, filters, limit, signals, offset)

Run the code above in your browser using DataLab