/** * Trader XO Macro Trend Scanner * * Overlay indicator (overlay=true) with: * - Consolidated EMA (shown when bothEMAs=false), colored green/red/#FF530D based on fast vs slow EMA * - Fast EMA (shown when bothEMAs=true), colored green/red/#FF530D based on trend * - Slow EMA (shown when bothEMAs=true), colored green/red/#FF530D based on trend * - Bull/Bear triangle markers on EMA crossover * - barcolor: green for bull/buysignal bars, red for bear/sellsignal bars * - bgcolor for Stoch RSI crossover alerts (mid-level, OB/OS-level, K>upper, K): IndicatorResult & { markers: MarkerData[]; barColors: BarColorData[]; bgColors: BgColorData[]; }; export declare const TraderXO: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: TraderXOInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=trader-xo.d.ts.map