pub struct BollingerResult {
pub upper: Series,
pub middle: Series,
pub lower: Series,
}Expand description
Bollinger Bands result containing all three bands.
Fields§
§upper: SeriesUpper band (middle + multiplier * stddev)
middle: SeriesMiddle band (SMA)
lower: SeriesLower band (middle - multiplier * stddev)
Implementations§
Trait Implementations§
Source§impl Clone for BollingerResult
impl Clone for BollingerResult
Source§fn clone(&self) -> BollingerResult
fn clone(&self) -> BollingerResult
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 moreSource§impl Debug for BollingerResult
impl Debug for BollingerResult
Source§impl PartialEq for BollingerResult
impl PartialEq for BollingerResult
impl Eq for BollingerResult
impl StructuralPartialEq for BollingerResult
Auto Trait Implementations§
impl Freeze for BollingerResult
impl RefUnwindSafe for BollingerResult
impl Send for BollingerResult
impl Sync for BollingerResult
impl Unpin for BollingerResult
impl UnsafeUnpin for BollingerResult
impl UnwindSafe for BollingerResult
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