pub struct WaveTrend { /* private fields */ }Expand description
WaveTrend Oscillator Often referred to as “LazyBear’s WaveTrend” on TradingView. WT1 = EMA(CI, n2) WT2 = SMA(WT1, n3) where: CI = (AP - ESA) / (0.015 * D) AP = (High + Low + Close) / 3 ESA = EMA(AP, n1) D = EMA(|AP - ESA|, n1)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for WaveTrend
impl RefUnwindSafe for WaveTrend
impl Send for WaveTrend
impl Sync for WaveTrend
impl Unpin for WaveTrend
impl UnsafeUnpin for WaveTrend
impl UnwindSafe for WaveTrend
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