/** * Average Directional Index (ADX) Indicator * * Measures trend strength regardless of direction. * Uses Series-based ta functions from oakscriptjs for consistency. */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar } from 'oakscriptjs'; export interface ADXInputs { /** ADX smoothing period */ adxSmoothing: number; /** DI period length */ diLength: number; } export declare const defaultInputs: ADXInputs; export declare const inputConfig: InputConfig[]; export declare const plotConfig: PlotConfig[]; export declare const metadata: { title: string; shortTitle: string; overlay: boolean; }; export declare function calculate(bars: Bar[], inputs?: Partial): IndicatorResult; export declare const ADX: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: ADXInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=adx.d.ts.map