apple-quant-algorithmic 0.1.0

Apple Quant's algorithmic trading api
Documentation
1
2
3
4
5
6
7
8
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum OrderExecutionExpectation {
	/// Treat the order like its expected to be immediately executable in the matching engine.
	Immediate,

	/// Treat the order like it would be resting before being matched.
	Resting,
}