├── LICENSE ├── __pycache__ ├── data.cpython-36.pyc ├── model.cpython-36.pyc ├── models.cpython-36 (DESKTOP-K7MSTBC's conflicted copy 2018-06-01).pyc └── models.cpython-36.pyc ├── code ├── __pycache__ │ ├── data.cpython-36.pyc │ └── models.cpython-36.pyc ├── cnn.py ├── data.py ├── models.py └── rnn.py ├── data ├── a_1.txt ├── a_2.txt ├── a_3.txt ├── a_4.txt ├── a_5.txt ├── b_1.txt ├── b_2.txt ├── b_3.txt ├── b_4.txt ├── b_5.txt └── notes.txt ├── figures ├── plot_cnn.png ├── plot_lstm.png └── plot_rnn.png ├── readme.md ├── report.pdf └── requirements.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackmzw/Price_Prediction_LOB/HEAD/LICENSE -------------------------------------------------------------------------------- /__pycache__/data.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackmzw/Price_Prediction_LOB/HEAD/__pycache__/data.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackmzw/Price_Prediction_LOB/HEAD/__pycache__/model.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/models.cpython-36 (DESKTOP-K7MSTBC's conflicted copy 2018-06-01).pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackmzw/Price_Prediction_LOB/HEAD/__pycache__/models.cpython-36 (DESKTOP-K7MSTBC's conflicted copy 2018-06-01).pyc -------------------------------------------------------------------------------- /__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackmzw/Price_Prediction_LOB/HEAD/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /code/__pycache__/data.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackmzw/Price_Prediction_LOB/HEAD/code/__pycache__/data.cpython-36.pyc -------------------------------------------------------------------------------- /code/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackmzw/Price_Prediction_LOB/HEAD/code/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /code/cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackmzw/Price_Prediction_LOB/HEAD/code/cnn.py -------------------------------------------------------------------------------- /code/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackmzw/Price_Prediction_LOB/HEAD/code/data.py -------------------------------------------------------------------------------- /code/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackmzw/Price_Prediction_LOB/HEAD/code/models.py -------------------------------------------------------------------------------- /code/rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackmzw/Price_Prediction_LOB/HEAD/code/rnn.py -------------------------------------------------------------------------------- /data/a_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackmzw/Price_Prediction_LOB/HEAD/data/a_1.txt -------------------------------------------------------------------------------- /data/a_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackmzw/Price_Prediction_LOB/HEAD/data/a_2.txt -------------------------------------------------------------------------------- /data/a_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackmzw/Price_Prediction_LOB/HEAD/data/a_3.txt -------------------------------------------------------------------------------- /data/a_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackmzw/Price_Prediction_LOB/HEAD/data/a_4.txt -------------------------------------------------------------------------------- /data/a_5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackmzw/Price_Prediction_LOB/HEAD/data/a_5.txt -------------------------------------------------------------------------------- /data/b_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackmzw/Price_Prediction_LOB/HEAD/data/b_1.txt -------------------------------------------------------------------------------- /data/b_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackmzw/Price_Prediction_LOB/HEAD/data/b_2.txt -------------------------------------------------------------------------------- /data/b_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackmzw/Price_Prediction_LOB/HEAD/data/b_3.txt -------------------------------------------------------------------------------- /data/b_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackmzw/Price_Prediction_LOB/HEAD/data/b_4.txt -------------------------------------------------------------------------------- /data/b_5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackmzw/Price_Prediction_LOB/HEAD/data/b_5.txt -------------------------------------------------------------------------------- /data/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackmzw/Price_Prediction_LOB/HEAD/data/notes.txt -------------------------------------------------------------------------------- /figures/plot_cnn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackmzw/Price_Prediction_LOB/HEAD/figures/plot_cnn.png -------------------------------------------------------------------------------- /figures/plot_lstm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackmzw/Price_Prediction_LOB/HEAD/figures/plot_lstm.png -------------------------------------------------------------------------------- /figures/plot_rnn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackmzw/Price_Prediction_LOB/HEAD/figures/plot_rnn.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackmzw/Price_Prediction_LOB/HEAD/readme.md -------------------------------------------------------------------------------- /report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackmzw/Price_Prediction_LOB/HEAD/report.pdf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | torch 2 | numpy 3 | pandas 4 | sklearn 5 | 6 | 7 | --------------------------------------------------------------------------------