pub struct VolSignalConfig {
pub lookback: usize,
pub elevated_threshold: Decimal,
}Expand description
Configuration for the VolumeSignal indicator.
Fields§
§lookback: usizeNumber of prior candles used to compute the rolling mean.
elevated_threshold: DecimalVolume ratio at or above which volume is classified as Elevated.
Auto Trait Implementations§
impl Freeze for VolSignalConfig
impl RefUnwindSafe for VolSignalConfig
impl Send for VolSignalConfig
impl Sync for VolSignalConfig
impl Unpin for VolSignalConfig
impl UnsafeUnpin for VolSignalConfig
impl UnwindSafe for VolSignalConfig
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