UNPKG

trading-signals

Version:

Technical indicators to run technical analysis with JavaScript / TypeScript.

8 lines (7 loc) 249 B
import { MovingAverage } from '../MA/MovingAverage.js'; export declare class HMA extends MovingAverage { #private; constructor(interval: number); getRequiredInputs(): number; update(price: number, replace: boolean): number | null; }