stockBot is a gentle automatic trader bot
You need to create and activate a virtual environment
$ python -m venv StockBot
$ source StockBot/bin/activate
Now you need to install librairies from requirements.txt
$ pip install pip --upgrade
$ pip install -r requirements.txt
To fetch data from online sources, you need to get your API Key from Quandl and Alpha Vantage
python stockBot --config --alphavantage={YOUR ALPHAVANTAGE KEY} --quandl=
{YOUR QUANDL KEY}
python stockBot --config --check
Then you are able to execute scripts that are in the examples folder
$ tensorboard --logdir res/tensorboards/
naive_LSTM is a simple neural network with only one LSTM layer.