ta-common 0.1.3

Common traits and models for technical indicators
Documentation
pub trait Indicator<In, Out> {
    fn next(&mut self, input: In) -> Out;

    fn reset(&mut self);
}