/** * Normalized QQE (nQQE) * * Smoothed RSI with a QQE trailing stop, normalized around zero. * QQEF = EMA(RSI, SF) − 50, QQES trailing stop − 50. * ATR of RSI uses double-WWMA (alpha = 1/length). * * Pine source: "Normalized Quantitative Qualitative Estimation" by KivancOzbilgic */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar, type SourceType } from 'oakscriptjs'; import type { MarkerData } from '../types'; export interface NormalizedQQEInputs { rsiLen: number; smoothFactor: number; qqeFactor: number; src: SourceType; showSignals: boolean; } export declare const defaultInputs: NormalizedQQEInputs; 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[]; }; export declare const NormalizedQQE: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: NormalizedQQEInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=normalized-qqe.d.ts.map