/** * Vortex Indicator * * Identifies the start of a new trend or the continuation of an existing trend. * Consists of two oscillators: VI+ (positive) and VI- (negative). */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar } from 'oakscriptjs'; export interface VortexInputs { /** Period length */ length: number; } export declare const defaultInputs: VortexInputs; 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 VortexIndicator: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: VortexInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=vortex.d.ts.map