pub struct MatchingLow { /* private fields */ }Expand description
Matching Low — a 2-bar bullish reversal. Two black candles in a decline close at the same level: the second sell-off cannot push price any lower, so the matching closes mark a support floor.
bar1, bar2 both black
equal closes = |close2 − close1| <= 0.05 · mean(range1, range2)Output is +1.0 when the pattern completes and 0.0 otherwise. Matching Low
is a single-direction (bullish-only) reversal, so it never emits −1.0. The
first bar always returns 0.0 because the two-bar window is not yet filled.
The close-equality tolerance follows the geometric house style rather than
TA-Lib’s rolling averages. Pattern-shape check only — no trend filter is
applied; combine with a trend indicator for actionable signals.
§Signed ±1 encoding
This detector emits the uniform candlestick sign convention shared across the
pattern family — +1.0 bullish, 0.0 no pattern — so it drops straight into
a machine-learning feature matrix as a single dimension.
§Example
use wickra_core::{Candle, Indicator, MatchingLow};
let mut indicator = MatchingLow::new();
indicator.update(Candle::new(15.0, 15.1, 9.9, 10.0, 1.0, 0).unwrap());
let out = indicator
.update(Candle::new(13.0, 13.1, 9.9, 10.0, 1.0, 1).unwrap());
assert_eq!(out, Some(1.0));Implementations§
Source§impl MatchingLow
impl MatchingLow
Trait Implementations§
Source§impl Clone for MatchingLow
impl Clone for MatchingLow
Source§fn clone(&self) -> MatchingLow
fn clone(&self) -> MatchingLow
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for MatchingLow
impl Debug for MatchingLow
Source§impl Default for MatchingLow
impl Default for MatchingLow
Source§fn default() -> MatchingLow
fn default() -> MatchingLow
Source§impl Indicator for MatchingLow
impl Indicator for MatchingLow
Source§type Input = Candle
type Input = Candle
f64 for a price, or Candle / Tick).Source§fn update(&mut self, candle: Candle) -> Option<f64>
fn update(&mut self, candle: Candle) -> Option<f64>
None if the indicator is still warming up.Source§fn reset(&mut self)
fn reset(&mut self)
Source§fn warmup_period(&self) -> usize
fn warmup_period(&self) -> usize
None output can be produced.Auto Trait Implementations§
impl Freeze for MatchingLow
impl RefUnwindSafe for MatchingLow
impl Send for MatchingLow
impl Sync for MatchingLow
impl Unpin for MatchingLow
impl UnsafeUnpin for MatchingLow
impl UnwindSafe for MatchingLow
Blanket Implementations§
Source§impl<T> BatchExt for Twhere
T: Indicator,
impl<T> BatchExt for Twhere
T: Indicator,
Source§fn batch(&mut self, inputs: &[Self::Input]) -> Vec<Option<Self::Output>>
fn batch(&mut self, inputs: &[Self::Input]) -> Vec<Option<Self::Output>>
None during warmup) per input.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
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>
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>
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