Skip to main content

IndicatorConfig

Trait IndicatorConfig 

Source
pub trait IndicatorConfig {
    type Indicator: Next<f64>;

    // Required method
    fn build(&self) -> Self::Indicator;
}
Expand description

A trait for indicator configurations that can build their respective streaming state machines.

Required Associated Types§

Required Methods§

Source

fn build(&self) -> Self::Indicator

Build a new instance of the indicator state machine.

Implementors§