pub struct RecoveryFactor { /* private fields */ }Expand description
Recovery Factor.
Input is treated as an equity-curve sample (e.g. total account equity). The indicator tracks the running all-time peak and the deepest drawdown seen so far, plus the cumulative net return relative to the first observation:
peak = max(equity since start)
trough_dd = max((peak − equity) / peak)
net_return = (equity_last / equity_first) − 1
Recovery = net_return / trough_ddRecovery > 1 means the strategy has earned more than it ever lost on
the way. A pure up-trend has no drawdown and the indicator reports 0.0
(the ratio is undefined; zero by convention).
Cumulative-from-start rather than rolling-windowed: the user resets to
re-start the count. Each update is O(1).
§Example
use wickra_core::{Indicator, RecoveryFactor};
let mut r = RecoveryFactor::new();
// Equity climbs, drops 20%, recovers and exceeds original peak.
for v in [100.0, 110.0, 105.0, 95.0, 88.0, 100.0, 120.0, 130.0] {
r.update(v);
}
assert!(r.value().unwrap() > 0.0);Implementations§
Trait Implementations§
Source§impl Clone for RecoveryFactor
impl Clone for RecoveryFactor
Source§fn clone(&self) -> RecoveryFactor
fn clone(&self) -> RecoveryFactor
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 RecoveryFactor
impl Debug for RecoveryFactor
Source§impl Default for RecoveryFactor
impl Default for RecoveryFactor
Source§fn default() -> RecoveryFactor
fn default() -> RecoveryFactor
Returns the “default value” for a type. Read more
Source§impl Indicator for RecoveryFactor
impl Indicator for RecoveryFactor
Source§fn update(&mut self, input: f64) -> Option<f64>
fn update(&mut self, input: 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 RecoveryFactor
impl RefUnwindSafe for RecoveryFactor
impl Send for RecoveryFactor
impl Sync for RecoveryFactor
impl Unpin for RecoveryFactor
impl UnsafeUnpin for RecoveryFactor
impl UnwindSafe for RecoveryFactor
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