trading-signals
Version:
Technical indicators to run technical analysis with JavaScript / TypeScript.
11 lines (10 loc) • 340 B
TypeScript
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;
getResultOrThrow(): number;
get isStable(): boolean;
}