All Projects → bfolkens → pandas-datareader-gdax

bfolkens / pandas-datareader-gdax

Licence: other
GDAX data for Pandas in the style of DataReader

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to pandas-datareader-gdax

Akshare
AKShare is an elegant and simple financial data interface library for Python, built for human beings! 开源财经数据接口库
Stars: ✭ 4,334 (+39300%)
Mutual labels:  finance, quant
Redtorch
Java开源量化交易开发框架
Stars: ✭ 528 (+4700%)
Mutual labels:  finance, quant
Rqalpha
A extendable, replaceable Python algorithmic backtest && trading framework supporting multiple securities
Stars: ✭ 4,425 (+40127.27%)
Mutual labels:  finance, quant
Financial Machine Learning
A curated list of practical financial machine learning tools and applications.
Stars: ✭ 2,172 (+19645.45%)
Mutual labels:  finance, quant
Py Market Profile
A library to calculate Market Profile (aka Volume Profile) for financial data from a Pandas DataFrame.
Stars: ✭ 153 (+1290.91%)
Mutual labels:  finance, quant
Qlnet
QLNet C# Library
Stars: ✭ 252 (+2190.91%)
Mutual labels:  finance, quant
Qlib
Qlib is an AI-oriented quantitative investment platform, which aims to realize the potential, empower the research, and create the value of AI technologies in quantitative investment. With Qlib, you can easily try your ideas to create better Quant investment strategies. An increasing number of SOTA Quant research works/papers are released in Qlib.
Stars: ✭ 7,582 (+68827.27%)
Mutual labels:  finance, quant
pystockfilter
Financial technical and fundamental analysis indicator library for pystockdb.
Stars: ✭ 26 (+136.36%)
Mutual labels:  finance, quant
Turingtrader
The Open-Source Backtesting Engine/ Market Simulator by Bertram Solutions.
Stars: ✭ 132 (+1100%)
Mutual labels:  finance, quant
Qlib Server
Qlib-Server is the data server system for Qlib. It enable Qlib to run in online mode. Under online mode, the data will be deployed as a shared data service. The data and their cache will be shared by all the clients. The data retrieval performance is expected to be improved due to a higher rate of cache hits. It will consume less disk space, too.
Stars: ✭ 81 (+636.36%)
Mutual labels:  finance, quant
GOAi
No description or website provided.
Stars: ✭ 57 (+418.18%)
Mutual labels:  finance, quant
Awesome Quant
中国的Quant相关资源索引
Stars: ✭ 2,529 (+22890.91%)
Mutual labels:  finance, quant
akshare
AKShare is an elegant and simple financial data interface library for Python, built for human beings! 开源财经数据接口库
Stars: ✭ 5,155 (+46763.64%)
Mutual labels:  finance, quant
Thstrader
量化交易。同花顺免费模拟炒股软件客户端的python API。(Python3)
Stars: ✭ 311 (+2727.27%)
Mutual labels:  finance, quant
Beibo
🤖 Predict the stock market with AI 用AI预测股票市场
Stars: ✭ 46 (+318.18%)
Mutual labels:  finance, quant
Quantdom
Python-based framework for backtesting trading strategies & analyzing financial markets [GUI ]
Stars: ✭ 449 (+3981.82%)
Mutual labels:  finance, quant
DeltaTrader
极简版Python量化交易工具
Stars: ✭ 174 (+1481.82%)
Mutual labels:  finance, quant
Awesome Quant
A curated list of insanely awesome libraries, packages and resources for Quants (Quantitative Finance)
Stars: ✭ 8,205 (+74490.91%)
Mutual labels:  finance, quant
Quant Notes
Quantitative Interview Preparation Guide, updated version here ==>
Stars: ✭ 180 (+1536.36%)
Mutual labels:  finance, quant
Vnpy
基于Python的开源量化交易平台开发框架
Stars: ✭ 17,054 (+154936.36%)
Mutual labels:  finance, quant

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

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'))
)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].