hmile

Python 3.x module to render financial results in tensorboard


License
MIT
Install
pip install hmile==0.2.2

Documentation

8 MILE

Test Documentation

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

🔥 Installation

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

📚 Documentation

Find doc here

🛠️ Build doc

You can rebuild the doc with the following commands:

make html
rm -r docs
mv _build/html docs
rm -rf _build