nautilus_indicators/volatility/
kc.rsuse std::fmt::{Debug, Display};
use nautilus_model::data::bar::Bar;
use crate::{
average::{MovingAverageFactory, MovingAverageType},
indicator::{Indicator, MovingAverage},
volatility::atr::AverageTrueRange,
};
#[repr(C)]
#[derive(Debug)]
#[cfg_attr(
feature = "python",
pyo3::pyclass(module = "nautilus_trader.core.nautilus_pyo3.indicators")
)]
pub struct KeltnerChannel {
pub period: usize,
pub k_multiplier: f64,
pub ma_type: MovingAverageType,
pub ma_type_atr: MovingAverageType,
pub use_previous: bool,
pub atr_floor: f64,
pub upper: f64,
pub middle: f64,
pub lower: f64,
pub initialized: bool,
has_inputs: bool,
ma: Box<dyn MovingAverage + Send + 'static>,
atr: AverageTrueRange,
}
impl Display for KeltnerChannel {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}({})", self.name(), self.period)
}
}
impl Indicator for KeltnerChannel {
fn name(&self) -> String {
stringify!(KeltnerChannel).to_string()
}
fn has_inputs(&self) -> bool {
self.has_inputs
}
fn initialized(&self) -> bool {
self.initialized
}
fn handle_bar(&mut self, bar: &Bar) {
self.update_raw((&bar.high).into(), (&bar.low).into(), (&bar.close).into());
}
fn reset(&mut self) {
self.ma.reset();
self.atr.reset();
self.upper = 0.0;
self.middle = 0.0;
self.lower = 0.0;
self.has_inputs = false;
self.initialized = false;
}
}
impl KeltnerChannel {
#[must_use]
pub fn new(
period: usize,
k_multiplier: f64,
ma_type: Option<MovingAverageType>,
ma_type_atr: Option<MovingAverageType>,
use_previous: Option<bool>,
atr_floor: Option<f64>,
) -> Self {
Self {
period,
k_multiplier,
ma_type: ma_type.unwrap_or(MovingAverageType::Simple),
ma_type_atr: ma_type_atr.unwrap_or(MovingAverageType::Simple),
use_previous: use_previous.unwrap_or(true),
atr_floor: atr_floor.unwrap_or(0.0),
upper: 0.0,
middle: 0.0,
lower: 0.0,
has_inputs: false,
initialized: false,
ma: MovingAverageFactory::create(ma_type.unwrap_or(MovingAverageType::Simple), period),
atr: AverageTrueRange::new(period, ma_type_atr, use_previous, atr_floor),
}
}
pub fn update_raw(&mut self, high: f64, low: f64, close: f64) {
let typical_price = (high + low + close) / 3.0;
self.ma.update_raw(typical_price);
self.atr.update_raw(high, low, close);
self.upper = self.atr.value.mul_add(self.k_multiplier, self.ma.value());
self.middle = self.ma.value();
self.lower = self.atr.value.mul_add(-self.k_multiplier, self.ma.value());
if !self.initialized {
self.has_inputs = true;
if self.ma.initialized() {
self.initialized = true;
}
}
}
}
#[cfg(test)]
mod tests {
use rstest::rstest;
use super::*;
use crate::stubs::kc_10;
#[rstest]
fn test_name_returns_expected_string(kc_10: KeltnerChannel) {
assert_eq!(kc_10.name(), "KeltnerChannel");
}
#[rstest]
fn test_str_repr_returns_expected_string(kc_10: KeltnerChannel) {
assert_eq!(format!("{kc_10}"), "KeltnerChannel(10)");
}
#[rstest]
fn test_period_returns_expected_value(kc_10: KeltnerChannel) {
assert_eq!(kc_10.period, 10);
assert_eq!(kc_10.k_multiplier, 2.0);
}
#[rstest]
fn test_initialized_without_inputs_returns_false(kc_10: KeltnerChannel) {
assert!(!kc_10.initialized());
}
#[rstest]
fn test_value_with_all_higher_inputs_returns_expected_value(mut kc_10: KeltnerChannel) {
let high_values = [
1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0,
];
let low_values = [
0.9, 1.9, 2.9, 3.9, 4.9, 5.9, 6.9, 7.9, 8.9, 9.9, 10.1, 10.2, 10.3, 11.1, 11.4,
];
let close_values = [
0.95, 1.95, 2.95, 3.95, 4.95, 5.95, 6.95, 7.95, 8.95, 9.95, 10.05, 10.15, 10.25, 11.05,
11.45,
];
for i in 0..15 {
kc_10.update_raw(high_values[i], low_values[i], close_values[i]);
}
assert!(kc_10.initialized());
assert_eq!(kc_10.upper, 13.436_666_666_666_666);
assert_eq!(kc_10.middle, 9.676_666_666_666_666);
assert_eq!(kc_10.lower, 5.916_666_666_666_666);
}
#[rstest]
fn test_reset_successfully_returns_indicator_to_fresh_state(mut kc_10: KeltnerChannel) {
kc_10.update_raw(1.00020, 1.00050, 1.00030);
kc_10.update_raw(1.00030, 1.00060, 1.00040);
kc_10.update_raw(1.00070, 1.00080, 1.00075);
kc_10.reset();
assert!(!kc_10.initialized());
assert!(!kc_10.has_inputs);
assert_eq!(kc_10.upper, 0.0);
assert_eq!(kc_10.middle, 0.0);
assert_eq!(kc_10.lower, 0.0);
}
}