pub struct ExecutionStats {
pub label: String,
pub order_count: usize,
pub fill_count: usize,
pub orders_with_arrival: usize,
pub filled_quantity: Decimal,
pub notional: Decimal,
pub total_fees: Decimal,
pub implementation_shortfall: Decimal,
pub avg_slippage_bps: Option<Decimal>,
}Expand description
High-level metrics computed for either the entire data set or one algo bucket.
Fields§
§label: String§order_count: usize§fill_count: usize§orders_with_arrival: usize§filled_quantity: Decimal§notional: Decimal§total_fees: Decimal§implementation_shortfall: Decimal§avg_slippage_bps: Option<Decimal>Trait Implementations§
Source§impl Clone for ExecutionStats
impl Clone for ExecutionStats
Source§fn clone(&self) -> ExecutionStats
fn clone(&self) -> ExecutionStats
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ExecutionStats
impl RefUnwindSafe for ExecutionStats
impl Send for ExecutionStats
impl Sync for ExecutionStats
impl Unpin for ExecutionStats
impl UnwindSafe for ExecutionStats
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more