/** * QQE Cross Indicator Alert v2.0 * * ATR-like adaptive bands around smoothed RSI (QQE method). * Three types of signal crosses: QQE cross (RSI vs trailing stop), * zero cross (RSI vs 50), and channel cross (RSI enters OB/OS threshold). * Optional triple-MA filter for confirming BUY/SELL signals. * * Reference: TradingView "QQE Cross" by JustUncleL */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar } from 'oakscriptjs'; import type { MarkerData } from '../types'; export interface QqeCrossInputs { rsiLength: number; rsiSmoothing: number; qqeFactor: number; threshold: number; fastMALen: number; medMALen: number; slowMALen: number; maType: string; useFilter: boolean; } export declare const defaultInputs: QqeCrossInputs; 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 QqeCross: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: QqeCrossInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=qqe-cross.d.ts.map