1#[cfg(feature = "moving")] 2pub mod moving; 3 4#[cfg(feature = "moving")] 5pub use moving::{ 6 exponential::ExponentialMovingAverage, 7 simple::{NoSumSMA, SMA, SingleSumSMA}, 8};