apple-quant-algorithmic 0.1.0

Apple Quant's algorithmic trading api
Documentation
1
2
3
4
5
6
7
use crate::{instrument::InstrumentSpec, price::AbsolutePrice, volume::DirectionalIntentVolume};

#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct PartialOrderFill<IS: InstrumentSpec> {
	pub price: AbsolutePrice<IS>,
	pub directional_intent_volume: DirectionalIntentVolume<IS>,
}