gitextract_ivwja75a/ ├── .gitignore ├── BookConstructor.sh ├── LICENSE.txt ├── Makefile ├── README.md ├── doc/ │ └── Doxyfile ├── examples/ │ ├── .ipynb_checkpoints/ │ │ ├── AutoregressionOfBuySell-checkpoint.ipynb │ │ ├── ChronoClock-checkpoint.ipynb │ │ ├── LFTimePatters-checkpoint.ipynb │ │ ├── MarketImpact-checkpoint.ipynb │ │ └── Untitled-checkpoint.ipynb │ ├── Algo.py │ ├── Algo_fixedSpread.py │ ├── Algo_lowRegret.py │ ├── AutoregressionOfBuySell.ipynb │ ├── ChronoClock.ipynb │ ├── ExecutionsMessage.py │ ├── LFTimePatters.ipynb │ ├── MarketImpact.ipynb │ ├── environment.py │ ├── tree_from_forest.dot │ └── utility.py ├── gtests/ │ ├── Message_test.cpp │ ├── OrderBook_test.cpp │ ├── OrderPool_test.cpp │ ├── Order_test.cpp │ ├── Reader_test.cpp │ └── main_gtest.cpp ├── include/ │ ├── BookConstructor.hpp │ ├── Message.hpp │ ├── Order.hpp │ ├── OrderBook.hpp │ ├── OrderPool.hpp │ ├── Reader.hpp │ ├── Writer.hpp │ └── utility.hpp ├── src/ │ ├── BookConstructor.cpp │ ├── Message.cpp │ ├── Order.cpp │ ├── OrderBook.cpp │ ├── OrderPool.cpp │ ├── Reader.cpp │ ├── Writer.cpp │ ├── main.cpp │ └── utility.cpp └── tmp/ ├── a.out ├── readFile.cpp └── test_htohs.cpp