/** * Quantitative Qualitative Estimation (QQE) * * Basic QQE indicator. RSI smoothed with EMA, then dynamic trailing stop * computed from ATR-like RSI volatility multiplied by qqeFactor. * * Reference: TradingView "QQE" by Glaz */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar, type SourceType } from 'oakscriptjs'; import type { MarkerData } from '../types'; export interface QQEInputs { rsiLen: number; smoothFactor: number; qqeFactor: number; src: SourceType; } export declare const defaultInputs: QQEInputs; 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 QQE: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: QQEInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=qqe.d.ts.map