Download historical financial data from yahoo finance
Project description
Yahoo Finance Historical Data Downloader
Download historical price, dividends and stock splits data from yahoo finance in python.
- Current Version: v_0.2.1
- Version Released: 2019-08-17
- Report any bugs by opening an issue here: https://github.com/sdiz/yahoo_finance_hdd/issues
Installation
- This module runs on python >= 3.3. It might run on other version, but has not been tested.
- Dependencies: numpy, pandas, requests, pandas_market_calendars.
- Installation using pip:
$ pip install yahoo_finance_hdd
- Installation using github:
$ git clone https://github.com/sdiz/yahoo_finance_hdd.git $ cd yahoo_finance_hdd $ python setup.py install
Usage
- The data from all methods is returned as a pandas dataframe.
- Create a parameters object to define all necessary input parameters
- start : the start date of the data series ('yyyy-mm-dd').
- end : the end date of the data series ('yyyy-mm-dd').
- tickers : single tickers can be passed as a string. Multiple tickers have to be passed as a list e.g ['IBM', 'AAPL'].
- interval : specify the frequency of the data series.
- 'd' = daily
- 'w' = weekly
- 'm' = monthly
- exchange : the exchange to obtain the dates for the data series (default NYSE)
- available exchanges are: ['BMF', 'CFE', 'CME', 'CBOT', 'COMEX', 'NYMEX', 'EUREX', 'ICE', 'ICEUS', 'NYFE', 'JPX', 'LSE', 'NYSE', 'stock', 'NASDAQ', 'BATS', 'OSE', 'SIX', 'TSX', 'TSXV', 'SSE', 'HKEX']
- columns : a list of strings specifying the data columns to be returned.
- ['Open', 'High', 'Low', 'Close', 'Adj Close', 'Volume']
- Available methods
- get_history(params) : download historical financial price data from yahoo finance.
- get_dividends(params) : download historical dividend data from yahoo finance.
- get_splits(params) : download historical data for stock splits from yahoo finance.
Examples
from yahoo_finance_hdd import YahooFinance, Parameters
# create parameter object
params = Parameters(
start = '2010-12-01',
end = '2019-08-20',
tickers = ['AAPL', 'VZ', 'JPM'],
interval = 'w',
exchange = 'NYSE',
columns = ['Open', 'Close']
)
# e.g change interval to daily
params.interval = 'd'
# create new yahoo finance instance
yf = YahooFinance()
# download historical financial price data
price_df = yf.get_history(params)
# download historical dividends data
dividends_df = yf.get_dividends(params)
# download historical stock splits data
splits_df = yf.get_splits(params)
Returned Data
Authors
- Serkan Dizbay - https://github.com/sdiz
License
This project is licensed under the MIT License - see the LICENSE.txt file for details
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file yahoo_finance_hdd-0.2.1.tar.gz
.
File metadata
- Download URL: yahoo_finance_hdd-0.2.1.tar.gz
- Upload date:
- Size: 6.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/41.1.0 requests-toolbelt/0.9.1 tqdm/4.33.0 CPython/3.6.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dfbc881cec7935ba9d3d938657a81a99d9e46a6fea32f597ef81c6d05d6bad05 |
|
MD5 | a3521f07805b7e9bcfea8876b290360a |
|
BLAKE2b-256 | e84391d852198c56c1430a956fa5dcfc2d4ae6900a836faac51f65fa59b03368 |