pub struct QqeOutput {
pub rsi_ma: f64,
pub trailing_line: f64,
}Expand description
One QQE reading: the smoothed RSI and its volatility-trailing line.
Fields§
§rsi_ma: f64The EMA-smoothed RSI (the fast QQE line).
trailing_line: f64The trailing line (the slow QQE line): an ATR-of-RSI trailing stop that the smoothed RSI rides above in an uptrend and below in a downtrend.
Trait Implementations§
impl Copy for QqeOutput
impl StructuralPartialEq for QqeOutput
Auto Trait Implementations§
impl Freeze for QqeOutput
impl RefUnwindSafe for QqeOutput
impl Send for QqeOutput
impl Sync for QqeOutput
impl Unpin for QqeOutput
impl UnsafeUnpin for QqeOutput
impl UnwindSafe for QqeOutput
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more