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).
- Host: GitHub
- URL: https://github.com/bbugyi200/orderbook
- Owner: bbugyi200
- Created: 2019-03-23T02:27:32.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-25T23:30:55.000Z (over 7 years ago)
- Last Synced: 2025-02-17T23:47:32.596Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 38.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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