/** * MACD VXI * * MACD with Volatility Index. VXI = stdev of histogram over signal period. * * Reference: TradingView "MACD VXI" community indicator */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar, type SourceType } from 'oakscriptjs'; import type { BgColorData } from '../types'; export interface MACDVXIInputs { fastLength: number; slowLength: number; signalLength: number; src: SourceType; } export declare const defaultInputs: MACDVXIInputs; 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 & { bgColors: BgColorData[]; }; export declare const MACDVXI: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: MACDVXIInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=macd-vxi.d.ts.map