UNPKG

trading-signals

Version:

Technical indicators to run technical analysis with JavaScript / TypeScript.

9 lines (8 loc) 442 B
import type { HighLowCloseVolume } from '../../base/Candle.type.js'; import { TrendIndicatorSeries } from '../../base/Indicator.js'; export declare class AD extends TrendIndicatorSeries<HighLowCloseVolume> { #private; getRequiredInputs(): number; update(candle: HighLowCloseVolume, replace: boolean): number; protected calculateSignalState(result: number | null | undefined): "BEARISH" | "BULLISH" | "SIDEWAYS" | "UNKNOWN"; }