pub struct VolumeSignal {
pub anomaly: VolumeAnomaly,
pub ratio: Decimal,
}Expand description
Output of the VolumeSignal indicator for a single candle.
Fields§
§anomaly: VolumeAnomalyClassification of the volume anomaly.
ratio: DecimalRatio of candle volume to rolling mean (candle.volume / mean).
Trait Implementations§
Source§impl Clone for VolumeSignal
impl Clone for VolumeSignal
Source§fn clone(&self) -> VolumeSignal
fn clone(&self) -> VolumeSignal
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 VolumeSignal
impl RefUnwindSafe for VolumeSignal
impl Send for VolumeSignal
impl Sync for VolumeSignal
impl Unpin for VolumeSignal
impl UnsafeUnpin for VolumeSignal
impl UnwindSafe for VolumeSignal
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