pub struct MurreyMathLinesOutput {
pub mm8_8: f64,
pub mm7_8: f64,
pub mm6_8: f64,
pub mm5_8: f64,
pub mm4_8: f64,
pub mm3_8: f64,
pub mm2_8: f64,
pub mm1_8: f64,
pub mm0_8: f64,
}Expand description
Output of MurreyMathLines: the nine Murrey Math levels from the bottom
(mm0_8, ultimate support) to the top (mm8_8, ultimate resistance).
Fields§
§mm8_8: f648/8 — ultimate resistance (top of the frame).
mm7_8: f647/8 — “weak, stall and reverse” (overbought).
mm6_8: f646/8 — upper pivot / reversal line.
mm5_8: f645/8 — top of the normal trading range.
mm4_8: f644/8 — the major pivot (mean) line.
mm3_8: f643/8 — bottom of the normal trading range.
mm2_8: f642/8 — lower pivot / reversal line.
mm1_8: f641/8 — “weak, stall and reverse” (oversold).
mm0_8: f640/8 — ultimate support (bottom of the frame).
Trait Implementations§
Source§impl Clone for MurreyMathLinesOutput
impl Clone for MurreyMathLinesOutput
Source§fn clone(&self) -> MurreyMathLinesOutput
fn clone(&self) -> MurreyMathLinesOutput
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 moreimpl Copy for MurreyMathLinesOutput
Source§impl Debug for MurreyMathLinesOutput
impl Debug for MurreyMathLinesOutput
Source§impl PartialEq for MurreyMathLinesOutput
impl PartialEq for MurreyMathLinesOutput
Source§fn eq(&self, other: &MurreyMathLinesOutput) -> bool
fn eq(&self, other: &MurreyMathLinesOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MurreyMathLinesOutput
Auto Trait Implementations§
impl Freeze for MurreyMathLinesOutput
impl RefUnwindSafe for MurreyMathLinesOutput
impl Send for MurreyMathLinesOutput
impl Sync for MurreyMathLinesOutput
impl Unpin for MurreyMathLinesOutput
impl UnsafeUnpin for MurreyMathLinesOutput
impl UnwindSafe for MurreyMathLinesOutput
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