Learn R Programming

hist

Overview

yfhist is a package that provides simple and efficient access to Yahoo Finance's historical data API (/v8/finance/chart/{symbol}) for querying and retrieval of financial data.

The core functionality of the yfhist package abstracts the complexities of interacting with Yahoo Finance APIs, such as session management, crumb and cookie handling, query construction, date validation, and interval management. This abstraction allows users to focus on retrieving data rather than managing API details. Use cases include historical data across a range of security types:

  • Equities & ETFs: end-of-day or intraday Open, High, Low, Close, Volume (OHLCV), and adjusted close prices
  • Indices: levels over time for benchmarking and research
  • Other tickers supported by Yahoo Finance where chart data is available

The package supports flexible query capabilities, including customizable date ranges, multiple time intervals, and automatic data validation. It automatically manages interval-specific limitations, such as lookback periods for intraday data and maximum date ranges for minute-level intervals.

The implementation leverages standard HTTP libraries to handle API interactions efficiently and provides support for both R and Python to ensure accessibility for a broad audience.

Installation

  • Install the released version from CRAN:
install.packages("yfhist")
  • Or the development version from GitHub:
# install.packages("devtools")
devtools::install_github("jasonjfoster/hist/r")

Usage

First, load the package and explore the available interval options:

library(yfhist)

print(data_intervals)

Then, to retrieve historical data, use the the get_data function:

data <- get_data(c("AAPL", "MSFT"))

Copy Link

Version

Install

install.packages('yfhist')

Version

0.1.3

License

GPL (>= 2)

Issues

Pull Requests

Stars

Forks

Maintainer

Jason Foster

Last Published

January 23rd, 2026

Functions in yfhist (0.1.3)

get_data

Get Data from the Yahoo Finance API
get_col

Get a Column from the Yahoo Finance API
get_session

Get the Crumb, Cookies, and Handle for Yahoo Finance API
data_intervals

Intervals Data for the Yahoo Finance API