pub struct VolatilityPercentile {
pub vol_pct: f64,
pub vol_regime: &'static str,
pub vol_mult: f64,
pub conf_adj: f64,
/* private fields */
}Expand description
Classifies ATR into a volatility regime by comparing the current ATR to its own rolling percentile history.
Fields§
§vol_pct: f64§vol_regime: &'static str§vol_mult: f64§conf_adj: f64Confidence score adjustment applied to conf_min_score.
Implementations§
Auto Trait Implementations§
impl Freeze for VolatilityPercentile
impl RefUnwindSafe for VolatilityPercentile
impl Send for VolatilityPercentile
impl Sync for VolatilityPercentile
impl Unpin for VolatilityPercentile
impl UnsafeUnpin for VolatilityPercentile
impl UnwindSafe for VolatilityPercentile
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