use crate::error::FinError;
use crate::signals::{BarInput, Signal, SignalValue};
use rust_decimal::Decimal;
use std::collections::VecDeque;
pub struct WickToBodyRatio {
name: String,
period: usize,
window: VecDeque<Decimal>, sum: Decimal,
}
impl WickToBodyRatio {
pub fn new(name: impl Into<String>, period: usize) -> Result<Self, FinError> {
if period == 0 {
return Err(FinError::InvalidPeriod(period));
}
Ok(Self {
name: name.into(),
period,
window: VecDeque::with_capacity(period),
sum: Decimal::ZERO,
})
}
}
impl Signal for WickToBodyRatio {
fn name(&self) -> &str { &self.name }
fn period(&self) -> usize { self.period }
fn is_ready(&self) -> bool { self.window.len() >= self.period }
fn update(&mut self, bar: &BarInput) -> Result<SignalValue, FinError> {
let body = if bar.close >= bar.open {
bar.net_move()
} else {
-bar.net_move()
};
if body.is_zero() {
return Ok(SignalValue::Unavailable);
}
let upper_wick = bar.upper_wick();
let lower_wick = bar.lower_wick();
let total_wick = upper_wick + lower_wick;
let ratio = total_wick
.checked_div(body)
.ok_or(FinError::ArithmeticOverflow)?;
self.sum += ratio;
self.window.push_back(ratio);
if self.window.len() > self.period {
let removed = self.window.pop_front().unwrap();
self.sum -= removed;
}
if self.window.len() < self.period {
return Ok(SignalValue::Unavailable);
}
let avg = self.sum
.checked_div(Decimal::from(self.window.len() as u32))
.ok_or(FinError::ArithmeticOverflow)?;
Ok(SignalValue::Scalar(avg))
}
fn reset(&mut self) {
self.window.clear();
self.sum = Decimal::ZERO;
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::ohlcv::OhlcvBar;
use crate::signals::Signal;
use crate::types::{NanoTimestamp, Price, Quantity, Symbol};
use rust_decimal_macros::dec;
fn bar(o: &str, h: &str, l: &str, c: &str) -> OhlcvBar {
let op = Price::new(o.parse().unwrap()).unwrap();
let hp = Price::new(h.parse().unwrap()).unwrap();
let lp = Price::new(l.parse().unwrap()).unwrap();
let cp = Price::new(c.parse().unwrap()).unwrap();
OhlcvBar {
symbol: Symbol::new("X").unwrap(),
open: op, high: hp, low: lp, close: cp,
volume: Quantity::zero(),
ts_open: NanoTimestamp::new(0),
ts_close: NanoTimestamp::new(1),
tick_count: 1,
}
}
#[test]
fn test_wbr_invalid_period() {
assert!(WickToBodyRatio::new("wbr", 0).is_err());
}
#[test]
fn test_wbr_doji_skipped() {
let mut s = WickToBodyRatio::new("wbr", 2).unwrap();
let v = s.update_bar(&bar("100", "110", "90", "100")).unwrap();
assert_eq!(v, SignalValue::Unavailable);
}
#[test]
fn test_wbr_no_wick_gives_zero() {
let mut s = WickToBodyRatio::new("wbr", 2).unwrap();
s.update_bar(&bar("90", "110", "90", "110")).unwrap();
let v = s.update_bar(&bar("90", "110", "90", "110")).unwrap();
if let SignalValue::Scalar(r) = v {
assert_eq!(r, dec!(0), "no-wick bar should give ratio 0: {r}");
} else {
panic!("expected Scalar");
}
}
#[test]
fn test_wbr_non_negative() {
let mut s = WickToBodyRatio::new("wbr", 3).unwrap();
let bars = [
bar("100", "115", "95", "110"),
bar("110", "120", "105", "112"),
bar("112", "118", "108", "115"),
];
for b in &bars {
if let SignalValue::Scalar(v) = s.update_bar(b).unwrap() {
assert!(v >= dec!(0), "wick-body ratio must be non-negative: {v}");
}
}
}
#[test]
fn test_wbr_reset() {
let mut s = WickToBodyRatio::new("wbr", 2).unwrap();
s.update_bar(&bar("90", "110", "90", "110")).unwrap();
s.update_bar(&bar("90", "110", "90", "110")).unwrap();
assert!(s.is_ready());
s.reset();
assert!(!s.is_ready());
}
}