pub struct BbValue { /* private fields */ }Expand description
Bollinger Bands output: upper, middle, and lower bands.
The middle band is the SMA. Upper and lower bands are offset by
std_dev × σ, where σ is the population standard deviation of the window.
upper = SMA + k × σ
middle = SMA
lower = SMA − k × σImplementations§
Trait Implementations§
impl Copy for BbValue
impl StructuralPartialEq for BbValue
Auto Trait Implementations§
impl Freeze for BbValue
impl RefUnwindSafe for BbValue
impl Send for BbValue
impl Sync for BbValue
impl Unpin for BbValue
impl UnsafeUnpin for BbValue
impl UnwindSafe for BbValue
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