UNPKG

trading-signals

Version:

Technical indicators to run technical analysis with JavaScript / TypeScript.

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