pub struct ConditionalValueAtRisk { /* private fields */ }Expand description
Rolling Conditional Value-at-Risk (Expected Shortfall).
Where crate::ValueAtRisk reports the loss at the lower-tail quantile,
CVaR averages all returns below that quantile — the expected loss
conditional on being in the bad tail:
q = 1 − confidence
tail = returns over window with rank fraction ≤ q
CVaR = − mean(tail) if mean is negative
CVaR = 0 otherwiseThe tail comprises the floor(q · n) smallest returns; if floor rounds
down to zero the smallest single return is used so the metric stays
defined for any period ≥ 2. Output is the magnitude of the expected
shortfall (sign-flipped to be non-negative). CVaR is by construction
≥ VaR because it averages losses beyond the VaR threshold.
Each update is O(period · log period).
§Example
use wickra_core::{ConditionalValueAtRisk, Indicator};
let mut c = ConditionalValueAtRisk::new(100, 0.95).unwrap();
let mut last = None;
for i in 0..120 {
last = c.update((f64::from(i) * 0.1).sin() * 0.02);
}
assert!(last.is_some());Implementations§
Source§impl ConditionalValueAtRisk
impl ConditionalValueAtRisk
Sourcepub fn new(period: usize, confidence: f64) -> Result<Self>
pub fn new(period: usize, confidence: f64) -> Result<Self>
Construct a new rolling CVaR.
§Errors
Returns Error::InvalidPeriod if period < 2, or if
confidence is outside (0, 1).
Sourcepub const fn confidence(&self) -> f64
pub const fn confidence(&self) -> f64
Configured confidence level.
Trait Implementations§
Source§impl Clone for ConditionalValueAtRisk
impl Clone for ConditionalValueAtRisk
Source§fn clone(&self) -> ConditionalValueAtRisk
fn clone(&self) -> ConditionalValueAtRisk
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 ConditionalValueAtRisk
impl Debug for ConditionalValueAtRisk
Source§impl Indicator for ConditionalValueAtRisk
impl Indicator for ConditionalValueAtRisk
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 ConditionalValueAtRisk
impl RefUnwindSafe for ConditionalValueAtRisk
impl Send for ConditionalValueAtRisk
impl Sync for ConditionalValueAtRisk
impl Unpin for ConditionalValueAtRisk
impl UnsafeUnpin for ConditionalValueAtRisk
impl UnwindSafe for ConditionalValueAtRisk
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