pub struct GeometricPatternConfig {
pub min_pole_atr: f64,
pub max_retrace_percent: f64,
pub min_flag_bars: usize,
pub shoulder_tolerance: f64,
pub min_pattern_size_atr: f64,
pub min_score_threshold: f64,
pub min_swing_distance: usize,
pub max_neckline_slope_deg: f64,
pub min_time_symmetry: u32,
pub atr_period: usize,
}Expand description
Tunable thresholds (defaults mirror Part 66/69 inputs).
Fields§
§min_pole_atr: f64§max_retrace_percent: f64§min_flag_bars: usize§shoulder_tolerance: f64§min_pattern_size_atr: f64§min_score_threshold: f64§min_swing_distance: usize§max_neckline_slope_deg: f64§min_time_symmetry: u32§atr_period: usizeTrait Implementations§
Source§impl Clone for GeometricPatternConfig
impl Clone for GeometricPatternConfig
Source§fn clone(&self) -> GeometricPatternConfig
fn clone(&self) -> GeometricPatternConfig
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 moreSource§impl Debug for GeometricPatternConfig
impl Debug for GeometricPatternConfig
Auto Trait Implementations§
impl Freeze for GeometricPatternConfig
impl RefUnwindSafe for GeometricPatternConfig
impl Send for GeometricPatternConfig
impl Sync for GeometricPatternConfig
impl Unpin for GeometricPatternConfig
impl UnsafeUnpin for GeometricPatternConfig
impl UnwindSafe for GeometricPatternConfig
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<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.