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
10
11
12
13
14
15
16
17
//! Order specifications for the matchcore library

mod flags;
mod id;
mod kind;
mod limit_order;
mod market_order;
mod pegged_order;
mod price_conditional_order;

pub use flags::*;
pub use id::*;
pub use kind::*;
pub use limit_order::*;
pub use market_order::*;
pub use pegged_order::*;
pub use price_conditional_order::*;