use rust_decimal::Decimal;
use std::collections::VecDeque;
use crate::error::FinError;
use crate::signals::{BarInput, Signal, SignalValue};
pub struct DonchianWidth {
period: usize,
highs: VecDeque<Decimal>,
lows: VecDeque<Decimal>,
}
impl DonchianWidth {
pub fn new(period: usize) -> Result<Self, FinError> {
if period == 0 {
return Err(FinError::InvalidPeriod(period));
}
Ok(Self {
period,
highs: VecDeque::with_capacity(period),
lows: VecDeque::with_capacity(period),
})
}
}
impl Signal for DonchianWidth {
fn update(&mut self, bar: &BarInput) -> Result<SignalValue, FinError> {
self.highs.push_back(bar.high);
self.lows.push_back(bar.low);
if self.highs.len() > self.period {
self.highs.pop_front();
self.lows.pop_front();
}
if self.highs.len() < self.period {
return Ok(SignalValue::Unavailable);
}
let rolling_high = self.highs.iter().cloned().fold(Decimal::MIN, Decimal::max);
let rolling_low = self.lows.iter().cloned().fold(Decimal::MAX, Decimal::min);
Ok(SignalValue::Scalar(rolling_high - rolling_low))
}
fn is_ready(&self) -> bool { self.highs.len() >= self.period }
fn period(&self) -> usize { self.period }
fn reset(&mut self) { self.highs.clear(); self.lows.clear(); }
fn name(&self) -> &str { "DonchianWidth" }
}
#[cfg(test)]
mod tests {
use super::*;
use rust_decimal_macros::dec;
fn bar(h: &str, l: &str) -> BarInput {
BarInput {
open: dec!(100),
high: h.parse().unwrap(),
low: l.parse().unwrap(),
close: dec!(100),
volume: dec!(1000),
}
}
#[test]
fn test_dw_basic_width() {
let mut sig = DonchianWidth::new(2).unwrap();
sig.update(&bar("120", "90")).unwrap();
let v = sig.update(&bar("110", "80")).unwrap();
assert_eq!(v, SignalValue::Scalar(dec!(40)));
}
#[test]
fn test_dw_single_bar() {
let mut sig = DonchianWidth::new(1).unwrap();
let v = sig.update(&bar("110", "90")).unwrap();
assert_eq!(v, SignalValue::Scalar(dec!(20)));
}
}