Python 3.x module to treat financial data for machine learning purpose. Many features including :
- download financial data from various sources
- preprocess data
- export data
Pre-requisites:
- python3
- pip3
Install the talib library:
wget http://prdownloads.sourceforge.net/ta-lib/ta-lib-0.4.0-src.tar.gz
tar -xzf ta-lib-0.4.0-src.tar.gz
cd ta-lib/ && ./configure --prefix=/usr && make && make install
Install the package with pip3
pip3 install hmile
You can rebuild the doc with the following commands:
make html
rm -r docs
mv _build/html docs
rm -rf _build