matchcore 0.4.0

A high-performance order book and price-time matching engine implemented as a single-threaded, deterministic, in-memory state machine
Documentation
1
2
3
4
5
6
7
8
9
//! Book that manages the orders and levels

mod limit_book;
mod pegged_book;
mod price_conditional_book;

pub use limit_book::*;
pub use pegged_book::*;
pub use price_conditional_book::*;