pub struct RSI { /* private fields */ }Expand description
Relative Strength Index (RSI) calculator
Uses EMA-smoothed gains and losses for a responsive RSI calculation. Values above 70 indicate overbought, below 30 indicate oversold.
Implementations§
Source§impl RSI
impl RSI
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RSI
impl RefUnwindSafe for RSI
impl Send for RSI
impl Sync for RSI
impl Unpin for RSI
impl UnsafeUnpin for RSI
impl UnwindSafe for RSI
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