Skip to main content

apple_quant_algorithmic/order/
execution_expectation.rs

1#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
2pub enum OrderExecutionExpectation {
3	/// Treat the order like its expected to be immediately executable in the matching engine.
4	Immediate,
5
6	/// Treat the order like it would be resting before being matched.
7	Resting,
8}