pub struct FibExtensionOutput {
pub level_1272: f64,
pub level_1414: f64,
pub level_1618: f64,
pub level_2000: f64,
pub level_2618: f64,
}Expand description
Fibonacci Extension levels for the most recent swing leg.
Each field is the price reached if the move continues to the matching multiple of the leg, measured from the leg’s start.
Fields§
§level_1272: f64127.2% extension.
level_1414: f64141.4% extension.
level_1618: f64161.8% extension — the “golden” extension.
level_2000: f64200% extension.
level_2618: f64261.8% extension.
Trait Implementations§
Source§impl Clone for FibExtensionOutput
impl Clone for FibExtensionOutput
Source§fn clone(&self) -> FibExtensionOutput
fn clone(&self) -> FibExtensionOutput
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 FibExtensionOutput
Source§impl Debug for FibExtensionOutput
impl Debug for FibExtensionOutput
Source§impl PartialEq for FibExtensionOutput
impl PartialEq for FibExtensionOutput
Source§fn eq(&self, other: &FibExtensionOutput) -> bool
fn eq(&self, other: &FibExtensionOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FibExtensionOutput
Auto Trait Implementations§
impl Freeze for FibExtensionOutput
impl RefUnwindSafe for FibExtensionOutput
impl Send for FibExtensionOutput
impl Sync for FibExtensionOutput
impl Unpin for FibExtensionOutput
impl UnsafeUnpin for FibExtensionOutput
impl UnwindSafe for FibExtensionOutput
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