pub struct SpreadHurst { /* private fields */ }Expand description
Hurst exponent of the spread a − b over a rolling window.
Each update takes one (a, b) price pair and forms the spread
sₜ = aₜ − bₜ. Over the trailing window of period spreads the indicator
estimates the Hurst exponent H from how the variance of τ-lagged
differences grows with the lag τ:
V(τ) = mean_t (s_{t+τ} − s_t)² ∝ τ^(2H)
H = slope of log V(τ) on log τ, divided by twoH classifies the spread’s regime:
H < 0.5— mean-reverting (anti-persistent): the spread snaps back, the regime pairs traders want.H ≈ 0.5— a random walk: no exploitable structure.H > 0.5— trending (persistent): the spread keeps diverging.
The fit uses lags 1..=period/4 (at least two). When the spread is flat —
every lagged difference is zero, so the log-regression has fewer than two
usable points — the indicator returns the neutral 0.5. The output is
clamped to [0, 1].
Each update is O(period · period/4), bounded by the fixed window.
§Example
use wickra_core::{Indicator, SpreadHurst};
let mut h = SpreadHurst::new(60).unwrap();
let mut last = None;
for t in 0..200 {
let b = 100.0 + f64::from(t);
// A tight oscillating spread is anti-persistent ⇒ H < 0.5.
let a = b + 3.0 * (f64::from(t) * 0.8).sin();
last = h.update((a, b));
}
assert!(last.unwrap() < 0.5);Implementations§
Source§impl SpreadHurst
impl SpreadHurst
Trait Implementations§
Source§impl Clone for SpreadHurst
impl Clone for SpreadHurst
Source§fn clone(&self) -> SpreadHurst
fn clone(&self) -> SpreadHurst
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 SpreadHurst
impl Debug for SpreadHurst
Source§impl Indicator for SpreadHurst
impl Indicator for SpreadHurst
Source§type Input = (f64, f64)
type Input = (f64, f64)
Type of one input data point (typically
f64 for a price, or Candle / Tick).Source§fn update(&mut self, input: (f64, f64)) -> Option<f64>
fn update(&mut self, input: (f64, f64)) -> Option<f64>
Feed one new data point into the indicator and return the freshly computed
output, or
None if the indicator is still warming up.Source§fn reset(&mut self)
fn reset(&mut self)
Reset all internal state, leaving the indicator equivalent to a freshly
constructed instance with the same parameters.
Source§fn warmup_period(&self) -> usize
fn warmup_period(&self) -> usize
Number of inputs required before the first non-
None output can be produced.Auto Trait Implementations§
impl Freeze for SpreadHurst
impl RefUnwindSafe for SpreadHurst
impl Send for SpreadHurst
impl Sync for SpreadHurst
impl Unpin for SpreadHurst
impl UnsafeUnpin for SpreadHurst
impl UnwindSafe for SpreadHurst
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>>
Run the indicator over a slice of inputs in order, returning one output (or
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
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