UNPKG

trading-signals

Version:

Technical indicators to run technical analysis with JavaScript / TypeScript.

9 lines (8 loc) 357 B
import { IndicatorSeries } from '../../base/Indicator.js'; import type { HighLowCloseVolume } from '../../base/Candle.type.js'; export declare class VWAP extends IndicatorSeries<HighLowCloseVolume<number>> { #private; constructor(); getRequiredInputs(): number; update(candle: HighLowCloseVolume<number>, replace: boolean): number | null; }