pub struct RwiOutput {
pub high: f64,
pub low: f64,
}Expand description
Random Walk Index output: the bullish (high) and bearish (low) lines.
Fields§
§high: f64RWI_High — strength of the trend up vs. a random walk.
low: f64RWI_Low — strength of the trend down vs. a random walk.
Trait Implementations§
impl Copy for RwiOutput
impl StructuralPartialEq for RwiOutput
Auto Trait Implementations§
impl Freeze for RwiOutput
impl RefUnwindSafe for RwiOutput
impl Send for RwiOutput
impl Sync for RwiOutput
impl Unpin for RwiOutput
impl UnsafeUnpin for RwiOutput
impl UnwindSafe for RwiOutput
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