stock_market_screener {eodhd} | R Documentation |
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
)
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. |
Value
A list containing the stock market screener.
Examples
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)
[Package eodhd version 1.0.4 Index]