/** * QQE MOD * * Dual QQE (Quantitative Qualitative Estimation) with Bollinger Bands overlay. * Primary QQE: RSI smoothed via EMA, with dynamic ATR-RSI bands. * Secondary QQE: Same logic, different parameters. * BB on primary QQE trend line highlights strong momentum zones. * * Reference: TradingView "QQE MOD" */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar } from 'oakscriptjs'; import type { MarkerData, BarColorData } from '../types'; export interface QQEModInputs { rsiLengthPrimary: number; rsiSmoothingPrimary: number; qqeFactorPrimary: number; rsiLengthSecondary: number; rsiSmoothingSecondary: number; qqeFactorSecondary: number; thresholdSecondary: number; bollingerLength: number; bollingerMultiplier: number; } export declare const defaultInputs: QQEModInputs; 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 & { markers: MarkerData[]; barColors: BarColorData[]; }; export declare const QQEMod: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: QQEModInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=qqe-mod.d.ts.map