View source: R/StockMarketScreenerAPI.R
stock_market_screener | R Documentation |
This function retrieves stock market screener from the API.
stock_market_screener(
api_token,
sort = NULL,
filters = NULL,
limit = NULL,
signals = NULL,
offset = NULL
)
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. |
A list containing the stock market screener.
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.