pub struct VolumeFeatures {
pub order_imbalance: f64,
pub order_book_depth: f64,
pub liquidity_shocks: f64,
pub order_cancel_estimated_rate: f64,
pub order_book_imbalance_ratio: f64,
}Expand description
Batch results for volume-based ML features calculated via SIMD
Fields§
§order_imbalance: f64The order imbalance.
order_book_depth: f64The order book depth.
liquidity_shocks: f64The liquidity shocks.
order_cancel_estimated_rate: f64The estimated rate of order cancellations.
order_book_imbalance_ratio: f64The order book imbalance ratio.
Trait Implementations§
Source§impl Clone for VolumeFeatures
impl Clone for VolumeFeatures
Source§fn clone(&self) -> VolumeFeatures
fn clone(&self) -> VolumeFeatures
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for VolumeFeatures
impl Debug for VolumeFeatures
impl Copy for VolumeFeatures
Auto Trait Implementations§
impl Freeze for VolumeFeatures
impl RefUnwindSafe for VolumeFeatures
impl Send for VolumeFeatures
impl Sync for VolumeFeatures
impl Unpin for VolumeFeatures
impl UnwindSafe for VolumeFeatures
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