pub struct PrecisionTrendAnalysis { /* private fields */ }Expand description
Precision Trend Analysis
Based on John Ehlers’ “Precision Trend Analysis” (TASC September 2024). Uses the difference between two HighPass filters to identify the trend and its Rate of Change (ROC) to pinpoint reversals. Returns (Trend, ROC).
Implementations§
Trait Implementations§
Source§impl Clone for PrecisionTrendAnalysis
impl Clone for PrecisionTrendAnalysis
Source§fn clone(&self) -> PrecisionTrendAnalysis
fn clone(&self) -> PrecisionTrendAnalysis
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 PrecisionTrendAnalysis
impl Debug for PrecisionTrendAnalysis
Source§impl Default for PrecisionTrendAnalysis
impl Default for PrecisionTrendAnalysis
Auto Trait Implementations§
impl Freeze for PrecisionTrendAnalysis
impl RefUnwindSafe for PrecisionTrendAnalysis
impl Send for PrecisionTrendAnalysis
impl Sync for PrecisionTrendAnalysis
impl Unpin for PrecisionTrendAnalysis
impl UnsafeUnpin for PrecisionTrendAnalysis
impl UnwindSafe for PrecisionTrendAnalysis
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