Title: | Yahoo Finance Screener |
---|---|
Description: | Fast and efficient access to Yahoo Finance's screener functionality for querying and retrieval of financial data. |
Authors: | Jason Foster |
Maintainer: | Jason Foster <[email protected]> |
License: | GPL (>= 2) |
Version: | 0.1 |
Built: | 2025-04-02 23:21:51 UTC |
Source: | https://github.com/jasonjfoster/screen |
A function to create a payload to query the Yahoo Finance API with customizable parameters.
create_payload(sec_type = "equity", query = NULL, size = 25, offset = 0, sort_field = NULL, sort_type = NULL, top_operator = "and")
create_payload(sec_type = "equity", query = NULL, size = 25, offset = 0, sort_field = NULL, sort_type = NULL, top_operator = "and")
sec_type |
string. Type of security to search (i.e., "equity", "mutualfund", "etf", "index", "future"). |
query |
list. Structured query to filter results created by
the |
size |
integer. Number of results to return. |
offset |
integer. Starting position of the results. |
sort_field |
string. Field to sort the results. |
sort_type |
string. Type of sort to apply (i.e., "asc", "desc"). |
top_operator |
string. Logical operator for the top-level of the query (i.e., "and", "or") |
A list representing the payload to be sent to the Yahoo Finance API with the specified parameters.
filters <- list( list("eq", list("region", "us")), list("btwn", list("intradaymarketcap", 2000000000, 10000000000)), list("btwn", list("intradaymarketcap", 10000000000, 100000000000)), list("gt", list("intradaymarketcap", 100000000000)), list("gt", list("dayvolume", 5000000)) ) query <- create_query(filters) payload <- create_payload("equity", query)
filters <- list( list("eq", list("region", "us")), list("btwn", list("intradaymarketcap", 2000000000, 10000000000)), list("btwn", list("intradaymarketcap", 10000000000, 100000000000)), list("gt", list("intradaymarketcap", 100000000000)), list("gt", list("dayvolume", 5000000)) ) query <- create_query(filters) payload <- create_payload("equity", query)
A function to create a structured query with logical operations and nested conditions formatted for the Yahoo Finance API.
create_query(filters = list("eq", list("region", "us")), top_operator = "and")
create_query(filters = list("eq", list("region", "us")), top_operator = "and")
filters |
list. Each element is a sublist that defines a filtering condition with the following structure:
|
top_operator |
string. Top-level logical operator to combine all filters (i.e., "and", "or"). |
A nested list representing the structured query with logical operations and nested conditions formatted for the Yahoo Finance API.
filters <- list( list("eq", list("region", "us")), list("btwn", list("intradaymarketcap", 2000000000, 10000000000)), list("btwn", list("intradaymarketcap", 10000000000, 100000000000)), list("gt", list("intradaymarketcap", 100000000000)), list("gt", list("dayvolume", 5000000)) ) query <- create_query(filters)
filters <- list( list("eq", list("region", "us")), list("btwn", list("intradaymarketcap", 2000000000, 10000000000)), list("btwn", list("intradaymarketcap", 10000000000, 100000000000)), list("gt", list("intradaymarketcap", 100000000000)), list("gt", list("dayvolume", 5000000)) ) query <- create_query(filters)
A data frame with the available category name data for the Yahoo Finance API.
data_categoryname
data_categoryname
A data frame.
A data frame with the available errors data for the Yahoo Finance API.
data_errors
data_errors
A data frame.
A data frame with the available exchange data for the Yahoo Finance API.
data_exchange
data_exchange
A data frame.
A data frame with the available filters data for the Yahoo Finance API.
data_filters
data_filters
A data frame.
A data frame with the available fund family name data for the Yahoo Finance API.
data_fundfamilyname
data_fundfamilyname
A data frame.
A data frame with the available industry name for the Yahoo Finance API.
data_industry
data_industry
A data frame.
A data frame with the available peer group data for the Yahoo Finance API.
data_peer_group
data_peer_group
A data frame.
A data frame with the available regions for the Yahoo Finance API.
data_region
data_region
A data frame.
A data frame with the available sector data for the Yahoo Finance API.
data_sector
data_sector
A data frame.
A function to get data from the Yahoo Finance API using the specified payload.
get_data(payload = NULL)
get_data(payload = NULL)
payload |
list. Payload that contains search criteria created using
the |
A data frame that contains data from the Yahoo Finance API for the specified search criteria.
filters <- list( list("eq", list("region", "us")), list("btwn", list("intradaymarketcap", 2000000000, 10000000000)), list("btwn", list("intradaymarketcap", 10000000000, 100000000000)), list("gt", list("intradaymarketcap", 100000000000)), list("gt", list("dayvolume", 5000000)) ) query <- create_query(filters) payload <- create_payload("equity", query) data <- get_data(payload)
filters <- list( list("eq", list("region", "us")), list("btwn", list("intradaymarketcap", 2000000000, 10000000000)), list("btwn", list("intradaymarketcap", 10000000000, 100000000000)), list("gt", list("intradaymarketcap", 100000000000)), list("gt", list("dayvolume", 5000000)) ) query <- create_query(filters) payload <- create_payload("equity", query) data <- get_data(payload)
A function to get the crumb, cookies, and handle required to authenticate and interact with the Yahoo Finance API.
get_session()
get_session()
A list containing the following elements:
handle |
A curl handle object for subsequent requests. |
crumb |
A string representing the crumb value for authentication. |
cookies |
A data frame of cookies for the request. |
session <- get_session()
session <- get_session()