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
//! Level that manages the status of the orders with the same activation condition

mod level_entries;
mod peg_level;
mod price_level;
mod queue_entry;
mod trigger_price_level;

pub use level_entries::*;
pub use peg_level::*;
pub use price_level::*;
pub use queue_entry::*;
pub use trigger_price_level::*;