1 2 3 4 5 6 7 8 9 10
use crate::domain::instrument::Instrument; use crate::domain::position::Side; #[derive(Debug, Clone, PartialEq)] pub struct ExecutionPlan { pub instrument: Instrument, pub side: Side, pub qty: f64, pub reduce_only: bool, }