Interface IndicatorSeries<Result, Input>

Tracks results of an indicator over time and memorizes the highest & lowest result.

interface IndicatorSeries<Result, Input> {
    highest?: Result;
    isStable: boolean;
    lowest?: Result;
    getResult(): Result;
    update(input): void | Result;
}

Type Parameters

  • Result = Big
  • Input = BigSource

Hierarchy (view full)

Implemented by

Properties

highest?: Result
isStable: boolean
lowest?: Result

Methods