HFT-Orderbook icon indicating copy to clipboard operation
HFT-Orderbook copied to clipboard

Limit Order Book for high-frequency trading (HFT), as described by WK Selph, implemented in Python3 and C

Results 8 HFT-Orderbook issues
Sort by recently updated
recently updated
newest added

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...

enhancement
help wanted

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...

enhancement
question

Implement tests for C and Python code base. C Tests ------- - [x] TestCreateDummyTree - [x] TestOrderPushing - [x] TestOrderPopping - [x] TestRemoveOrder - [x] TestCreateRoot - [x] TestAddNewLimit -...

enhancement

Cythonize the C src code and use it in the Python module

enhancement

initLimit bug, limit->tailOrder not present

Error in pushToQueue functions, corrections