UNPKG

trading-signals

Version:

Technical indicators to run technical analysis with JavaScript / TypeScript.

9 lines (8 loc) 285 B
import { IndicatorSeries } from '../../base/Indicator.js'; export declare class IQR extends IndicatorSeries { #private; readonly interval: number; constructor(interval: number); getRequiredInputs(): number; update(value: number, replace: boolean): number | null; }