pub struct FallingThreeMethods { /* private fields */ }Expand description
Falling Three Methods — a 5-bar bearish continuation. A long black candle is followed by three small bars that drift up but stay inside its range (a brief rest), then a second long black candle closes below the first, resuming the decline.
long body = |close − open| >= 0.5 * (high − low)
bar1 black & long
bar2, bar3, bar4 small bodies, each contained within bar1's high/low range
bar5 black, closing below bar1's closeOutput is −1.0 when the pattern completes and 0.0 otherwise. Falling Three
Methods is a single-direction (bearish-only) continuation, so it never emits
+1.0. The first four bars always return 0.0 because the five-bar window is
not yet filled. Body thresholds follow 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 bearish, 0.0 no pattern — so it drops straight into
a machine-learning feature matrix as a single dimension.
§Example
use wickra_core::{Candle, FallingThreeMethods, Indicator};
let mut indicator = FallingThreeMethods::new();
indicator.update(Candle::new(15.0, 15.1, 9.9, 10.0, 1.0, 0).unwrap());
indicator.update(Candle::new(11.0, 12.1, 10.9, 12.0, 1.0, 1).unwrap());
indicator.update(Candle::new(11.5, 12.6, 11.4, 12.5, 1.0, 2).unwrap());
indicator.update(Candle::new(12.0, 13.1, 11.9, 13.0, 1.0, 3).unwrap());
let out = indicator
.update(Candle::new(12.5, 12.6, 8.9, 9.0, 1.0, 4).unwrap());
assert_eq!(out, Some(-1.0));Implementations§
Trait Implementations§
Source§impl Clone for FallingThreeMethods
impl Clone for FallingThreeMethods
Source§fn clone(&self) -> FallingThreeMethods
fn clone(&self) -> FallingThreeMethods
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 FallingThreeMethods
impl Debug for FallingThreeMethods
Source§impl Default for FallingThreeMethods
impl Default for FallingThreeMethods
Source§fn default() -> FallingThreeMethods
fn default() -> FallingThreeMethods
Source§impl Indicator for FallingThreeMethods
impl Indicator for FallingThreeMethods
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 FallingThreeMethods
impl RefUnwindSafe for FallingThreeMethods
impl Send for FallingThreeMethods
impl Sync for FallingThreeMethods
impl Unpin for FallingThreeMethods
impl UnsafeUnpin for FallingThreeMethods
impl UnwindSafe for FallingThreeMethods
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