Yahoo! Finance-ng python3 / pandas market data downloader
yfinanceng Ever since Yahoo! finance decommissioned their historical data API, many programs that relied on it to stop working. yfinanceng aimes to solve this problem by offering a reliable, threaded, and Pythonic way to download historical market data from Yahoo! finance. Quick Start The Ticker module The Ticker module, which allows you to access ticker data in amore Pythonic way: import yfinanceng as yf msft = yf.Ticker(“MSFT”) # get stock info msft.info # get historical market data hist = msft.history(period=”max”) […]
Read more