pub struct CyberCycle { /* private fields */ }Expand description
John Ehlers’ Cyber Cycle As described in “Cybernetic Analysis for Stocks and Futures” (2004), Chapter 4, Page 33-34.
The Cyber Cycle is an indicator that models the cyclical component of price movement. It uses a 4-bar symmetrical finite impulse response (FIR) filter for smoothing and an alpha calculation to isolate the cycle.
Implementations§
Trait Implementations§
Source§impl Clone for CyberCycle
impl Clone for CyberCycle
Source§fn clone(&self) -> CyberCycle
fn clone(&self) -> CyberCycle
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 CyberCycle
impl Debug for CyberCycle
Auto Trait Implementations§
impl Freeze for CyberCycle
impl RefUnwindSafe for CyberCycle
impl Send for CyberCycle
impl Sync for CyberCycle
impl Unpin for CyberCycle
impl UnsafeUnpin for CyberCycle
impl UnwindSafe for CyberCycle
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