pub struct TEMA { /* private fields */ }Expand description
Triple Exponential Moving Average (TEMA) TEMA = (3 * EMA1) - (3 * EMA2) + EMA3 where EMA1 = EMA(Close), EMA2 = EMA(EMA1), EMA3 = EMA(EMA2)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TEMA
impl RefUnwindSafe for TEMA
impl Send for TEMA
impl Sync for TEMA
impl Unpin for TEMA
impl UnsafeUnpin for TEMA
impl UnwindSafe for TEMA
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