pub struct CycleTrendAnalytics { /* private fields */ }Expand description
Cycle/Trend Analytics Indicator
Based on John Ehlers’ “Cycle/Trend Analytics And The MAD Indicator” (2021). It computes a series of oscillators: Price - SMA(Price, Length) for Length 5 to 30.
Implementations§
Trait Implementations§
Source§impl Clone for CycleTrendAnalytics
impl Clone for CycleTrendAnalytics
Source§fn clone(&self) -> CycleTrendAnalytics
fn clone(&self) -> CycleTrendAnalytics
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CycleTrendAnalytics
impl Debug for CycleTrendAnalytics
Auto Trait Implementations§
impl Freeze for CycleTrendAnalytics
impl RefUnwindSafe for CycleTrendAnalytics
impl Send for CycleTrendAnalytics
impl Sync for CycleTrendAnalytics
impl Unpin for CycleTrendAnalytics
impl UnsafeUnpin for CycleTrendAnalytics
impl UnwindSafe for CycleTrendAnalytics
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