UNPKG

trading-signals

Version:

Technical indicators to run technical analysis with JavaScript / TypeScript.

10 lines (9 loc) 308 B
import { IndicatorSeries } from '../../base/Indicator.js'; export declare class DEMA extends IndicatorSeries { #private; readonly interval: number; constructor(interval: number); getRequiredInputs(): number; update(price: number, replace: boolean): number; get isStable(): boolean; }