wf19970425 / bitcoin-nn

Predictive modeling for Bitcoin prices using LSTM and stacked neural nets

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Time Series Prediction with LSTM Neural Network

This is part of a project working with time series to build a predictive model around bitcoin prices. Stocks and cryptocurrency data is noisy and likely unpredictable with small amounts of data, so this is more an exercise in experimentation than a serious attempt to gain any advantage in the market.

Ticker data is collected on 15 second intervals, and predicted 5 minutes into the future. In addition to ticker data, a second data file contains features collected using the Bitcoin Developer Websocket API, which provides streaming data on new transactions and blocks. Features are organized into epochs and normalized to zero mean and unit variance.

Several variations of network architecture can be used to model the data with small modifications to the layers. In its current form, the model uses a Long Short Term Memory (LSTM) combined with a stacked neural network and dropout. LSTMs can learn long term dependencies, usually in the context of sequences of speech or text, and likewise seemed like a logical choice with which to build a time series predictor.

The graph for this configuration is as follows:

![lstm graph] (img/lstm_dnn_graph.png)

This uses the development branch of Tensorflow, currently version 0.11.0rc0

More data is needed to adequately assess results, and more error metrics will be pushed soon. For now, results look something like this after 2000 epochs, omitting the optional DNN:

Training Error: 0.85 RMSE
Test Error: 0.82 RMSE

Loss: 0.665656
done in 4.848s.
Overall time: 794.409s

![results graph] (img/time_series_LSTM_001.png)

Directories and scripts:

time_series_lstm.py - main program utils/cleaner.py - cleans the two datasets and fills in missing data with redundant data source utils/data_loader.py - loads and formats raw data into dataframes utils/data_splitter.py - spilts into training, test, and optional validation sets

To run:

install dependencies

  • Tensorflow
  • Numpy
  • Pandas
  • Matplotlib

Then run:

python3 time_series_lstm.py

Then send donations to:

3DrXNQydchoC7aaNHa4F4BSNCL2YyZJAjn

License (MIT)¶ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Predictive modeling for Bitcoin prices using LSTM and stacked neural nets

License:MIT License


Languages

Language:Python 100.0%