├── .DS_Store ├── .gitignore ├── README.md ├── images ├── AMD.acc&loss.sl=20.png └── AMD.acc.sl=20&30&40&50.png └── src ├── .DS_Store ├── OrderBook.py ├── __init__.py ├── dates_file ├── AAPL_dates.npy └── AMD_dates.npy ├── display.py ├── eval.py ├── eval_magnitude.py ├── findGoodStock.py ├── lstm.py ├── metric.py ├── train.py └── train_magnitude.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingyuZha/Deep_Learning_In_Limited_Order_Books/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingyuZha/Deep_Learning_In_Limited_Order_Books/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingyuZha/Deep_Learning_In_Limited_Order_Books/HEAD/README.md -------------------------------------------------------------------------------- /images/AMD.acc&loss.sl=20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingyuZha/Deep_Learning_In_Limited_Order_Books/HEAD/images/AMD.acc&loss.sl=20.png -------------------------------------------------------------------------------- /images/AMD.acc.sl=20&30&40&50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingyuZha/Deep_Learning_In_Limited_Order_Books/HEAD/images/AMD.acc.sl=20&30&40&50.png -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingyuZha/Deep_Learning_In_Limited_Order_Books/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/OrderBook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingyuZha/Deep_Learning_In_Limited_Order_Books/HEAD/src/OrderBook.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dates_file/AAPL_dates.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingyuZha/Deep_Learning_In_Limited_Order_Books/HEAD/src/dates_file/AAPL_dates.npy -------------------------------------------------------------------------------- /src/dates_file/AMD_dates.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingyuZha/Deep_Learning_In_Limited_Order_Books/HEAD/src/dates_file/AMD_dates.npy -------------------------------------------------------------------------------- /src/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingyuZha/Deep_Learning_In_Limited_Order_Books/HEAD/src/display.py -------------------------------------------------------------------------------- /src/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingyuZha/Deep_Learning_In_Limited_Order_Books/HEAD/src/eval.py -------------------------------------------------------------------------------- /src/eval_magnitude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingyuZha/Deep_Learning_In_Limited_Order_Books/HEAD/src/eval_magnitude.py -------------------------------------------------------------------------------- /src/findGoodStock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingyuZha/Deep_Learning_In_Limited_Order_Books/HEAD/src/findGoodStock.py -------------------------------------------------------------------------------- /src/lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingyuZha/Deep_Learning_In_Limited_Order_Books/HEAD/src/lstm.py -------------------------------------------------------------------------------- /src/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingyuZha/Deep_Learning_In_Limited_Order_Books/HEAD/src/metric.py -------------------------------------------------------------------------------- /src/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingyuZha/Deep_Learning_In_Limited_Order_Books/HEAD/src/train.py -------------------------------------------------------------------------------- /src/train_magnitude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingyuZha/Deep_Learning_In_Limited_Order_Books/HEAD/src/train_magnitude.py --------------------------------------------------------------------------------