https://github.com/bfolkens/pandas-datareader-gdax
GDAX data for Pandas in the style of DataReader
https://github.com/bfolkens/pandas-datareader-gdax
bitcoin cryptocurrency data data-analysis dataset finance gdax pandas quant
Last synced: 5 months ago
JSON representation
GDAX data for Pandas in the style of DataReader
- Host: GitHub
- URL: https://github.com/bfolkens/pandas-datareader-gdax
- Owner: bfolkens
- License: other
- Created: 2017-11-20T22:09:20.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-11-21T05:07:46.000Z (over 8 years ago)
- Last Synced: 2025-09-12T02:57:29.715Z (9 months ago)
- Topics: bitcoin, cryptocurrency, data, data-analysis, dataset, finance, gdax, pandas, quant
- Language: Python
- Size: 4.88 KB
- Stars: 11
- Watchers: 4
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
========
Overview
========
A library to retrieve GDAX historical data into a Pandas DataFrame, in a similar style to Pandas DataReader.
* Free software: BSD license
Installation
============
::
pip install pandas-datareader-gdax
Example
=======
.. code-block:: python
import pytz
from datetime import datetime
from pandas_datareader_gdax import get_data_gdax
# Retrieve the GDAX data into a dataframe
df = get_data_gdax(
'BTC-USD',
granularity=5*60,
start=datetime(2016, 6, 1, 7, 0, 0, tzinfo=pytz.timezone('UTC')),
end=datetime(2017, 9, 1, 6, 59, 59, tzinfo=pytz.timezone('UTC'))
)