Yahoo Finance API
Jump to navigation
Jump to search
External
- https://github.com/ranaroussi/yfinance
- https://pypi.org/project/yfinance/
- https://towardsdatascience.com/python-how-to-get-live-market-data-less-than-0-1-second-lag-c85ee280ed93
- https://www.makeuseof.com/stock-price-data-using-python/
Internal
Overview
Installation
pip3 install yfinance
Usage
import yfinance as yf
m = yf.Ticker('FCOM').info
print("Close Price", m['regularMarketPreviousClose'])
# historical data, return a Pandas DataFrame.
data = yf.download('FCOM', '2023-10-01', '2023-10-13')
Ticker
download()
Provides both closing and adjusted closing price, unlike Ticker history()
.