Fixed Makefile to use scripts rather than actual compiler
[c11concurrency-benchmarks.git] / gdax-orderbook-hpp / README.md
1 A copy of the GDAX order book for the product given during construction, exposed as two maps, one for bids and one for offers, each mapping price levels to order quantities, continually updated in real time via the `level2` channel of the Websocket feed of the GDAX API.
2
3 Spawns a separate thread to receive updates from the GDAX WebSocket Feed and process them into the maps.
4
5 To ensure high performance, implemented using concurrent data structures from libcds.  The price->quantity maps are instances of cds::container::SkipListMap, whose doc says it is lock-free.