pub struct InstantaneousTrendline { /* private fields */ }Expand description
Instantaneous Trendline
Based on John Ehlers’ “Rocket Science for Traders” (Chapter 10). Removes the dominant cycle component to reveal the underlying trend with minimal lag.
Implementations§
Trait Implementations§
Source§impl Clone for InstantaneousTrendline
impl Clone for InstantaneousTrendline
Source§fn clone(&self) -> InstantaneousTrendline
fn clone(&self) -> InstantaneousTrendline
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 InstantaneousTrendline
impl Debug for InstantaneousTrendline
Source§impl Default for InstantaneousTrendline
impl Default for InstantaneousTrendline
Auto Trait Implementations§
impl Freeze for InstantaneousTrendline
impl RefUnwindSafe for InstantaneousTrendline
impl Send for InstantaneousTrendline
impl Sync for InstantaneousTrendline
impl Unpin for InstantaneousTrendline
impl UnsafeUnpin for InstantaneousTrendline
impl UnwindSafe for InstantaneousTrendline
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