An open API service indexing awesome lists of open source software.

https://github.com/bbugyi200/orderbook

My attempt at designing a data structure which efficiently tracks limit orders (i.e. bids and asks).
https://github.com/bbugyi200/orderbook

Last synced: about 1 year ago
JSON representation

My attempt at designing a data structure which efficiently tracks limit orders (i.e. bids and asks).

Awesome Lists containing this project

README

          

# OrderBook

My attempt at designing a data structure which efficiently tracks limit orders (i.e. bids and asks).

### Unit Tests
The corresponding unit tests were written using Python's [pytest] testing framework. All tests can be run using the following command:
```
python2 -m pytest test_order_book.py
```

[pytest]: https://github.com/pytest-dev/pytest