Trait indicators::IndicatorSMA[][src]

pub trait IndicatorSMA {
    type Input;
    type Period;
    type Limit;
    type Output;
    fn sma_indicator(
        input: Self::Input,
        period: Self::Period,
        limit: Self::Limit
    ) -> Self::Output; }

Associated Types

Required methods

Implementors