HFT-Orderbook
HFT-Orderbook copied to clipboard
Limit Order Book for high-frequency trading (HFT), as described by WK Selph, implemented in Python3 and C
Hi: Below test function is not getting run void RunAllTests(void){ CuString *output = CuStringNew(); CuSuite* suite = CuSuiteNew(); CuSuiteAddSuite(suite, HFTLobGetSuite()); CuSuiteRun(suite); CuSuiteSummary(suite, output); CuSuiteDetails(suite, output); printf("%s\n", output->buffer); } Actually program...
We currently only provide the basic structs to build an HFT book. The following functions should be added to ease usage of this lib: - [ ] `Book` struct and...
Dear nlsdfnbch, Thanks for your work on this library. I had a quick question. The following sequence of orders leads to a raise `NotImplementedError`: ``` from lob import LimitOrderBook, Order...
Implement tests for C and Python code base. C Tests ------- - [x] TestCreateDummyTree - [x] TestOrderPushing - [x] TestOrderPopping - [x] TestRemoveOrder - [x] TestCreateRoot - [x] TestAddNewLimit -...
Cythonize the C src code and use it in the Python module
initLimit bug, limit->tailOrder not present
Error in pushToQueue functions, corrections