mylittleindicators 0.1.8

Multi-stream financial indicators library — 556 bar indicators + 21 event primitives across 35 categories. Consumes 27 stream kinds from digdigdig3 exchange connectors: OHLCV bars, ticks, orderbook (snapshot/delta/L3), funding/predicted funding/funding settlement, mark price, index price, open interest, liquidations, ticker, agg trades, long/short ratio, option greeks, volatility index, historical volatility, basis (derived), composite index, settlement events, block trades, insurance fund, risk limit, market warning, and three kline-family variants. Live-verified on 12 exchanges (89% pass-rate on a 150s BTC slice).
Documentation
// Donchian Position: (Close - Lower) / (Upper - Lower)

use crate::bar_indicators::channels::donchian_channel::DonchianChannel;
use crate::bar_indicators::indicator_value::IndicatorValue;

#[derive(Debug, Clone)]
pub struct DonchianPosition {
    dc: DonchianChannel,
    value: f64,
}

impl DonchianPosition {
    pub fn new(period: usize) -> Self {
        Self {
            dc: DonchianChannel::new(period.max(2)),
            value: 0.5,
        }
    }
    #[inline]
    pub fn reset(&mut self) {
        self.dc.reset();
        self.value = 0.5;
    }
    #[inline]
    pub fn is_ready(&self) -> bool {
        self.dc.is_ready()
    }
    #[inline]
    pub fn value(&self) -> IndicatorValue {
        IndicatorValue::Single(self.value)
    }
    pub fn update_bar(&mut self, o: f64, h: f64, l: f64, c: f64, v: f64) -> f64 {
        let (upper, _mid, lower) = self.dc.update_bar(o, h, l, c, v);
        let width = (upper - lower).max(0.0);
        self.value = if width > 0.0 {
            (c - lower) / width
        } else {
            0.5
        };
        self.value
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_donchian_position_creation() {
        let dp = DonchianPosition::new(20);
        assert!(!dp.is_ready());
        assert_eq!(dp.value().main(), 0.5);
    }

    #[test]
    fn test_donchian_position_warmup() {
        let mut dp = DonchianPosition::new(20);
        for i in 0..25 {
            let price = 100.0 + (i as f64 * 0.1).sin() * 5.0;
            dp.update_bar(price, price + 1.0, price - 1.0, price, 1000.0);
        }
        assert!(dp.is_ready());
    }

    #[test]
    fn test_donchian_position_range() {
        let mut dp = DonchianPosition::new(20);
        for i in 0..30 {
            let price = 100.0 + (i as f64 * 0.2).sin() * 10.0;
            let value = dp.update_bar(price, price + 1.0, price - 1.0, price, 1000.0);
            assert!(value.is_finite(), "Position should be finite");
        }
    }

    #[test]
    fn test_donchian_position_reset() {
        let mut dp = DonchianPosition::new(20);
        for i in 0..25 {
            dp.update_bar(100.0 + i as f64, 101.0, 99.0, 100.0 + i as f64, 1000.0);
        }
        dp.reset();
        assert!(!dp.is_ready());
        assert_eq!(dp.value().main(), 0.5);
    }
}