Getting Started

You can get started testing on Google Colab or your local machine, by viewing our many examples


Installation

TensorTrade requires Python >= 3.6 for all functionality to work as expected.

You can install the package from PyPi via pip or from the Github repo.

pip install tensortrade

OR

pip install git+https://github.com/notadamking/tensortrade.git

Some functionality included in TensorTrade is optional. To install all optional dependencies, run the following command:

pip install tensortrade[tf,tensorforce,baselines,ccxt,fbm]

OR

pip install git+https://github.com/notadamking/tensortrade.git[tf,tensorforce,baselines,ccxt,fbm]

Docker

To run the commands below ensure Docker is installed. Visit https://docs.docker.com/install/ for more information

Run Jupyter Notebooks

To run a jupyter notebook execute the following

make run-notebook

which will generate a link of the form 127.0.0.1:8888/?token=… Paste this link into your browers and select the notebook you’d like to explore

Build Documentation

To build documentation execute the following

make run-docs

Run Test Suite

To run the test suite execute the following

make run-tests