/** * Bill Williams Alligator + Fractals * * Alligator: 3 SMMA (RMA) lines on HL2 with forward offsets. * Jaw = RMA(hl2, 13) shifted 8 bars, Teeth = RMA(hl2, 8) shifted 5, Lips = RMA(hl2, 5) shifted 3. * Fractals: 5-bar pivot high/low detection. * Resistance: valuewhen(high >= highest(high, lengthRS), high, 0) - held until new fractal high. * Support: valuewhen(low <= lowest(low, lengthRS), low, 0) - held until new fractal low. * * Reference: TradingView "Bill Williams Alligator + Fractals + S/R" (community) */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar } from 'oakscriptjs'; import type { MarkerData } from '../types'; export interface WilliamsComboInputs { lengthRS: number; } export declare const defaultInputs: WilliamsComboInputs; 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 WilliamsCombo: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: WilliamsComboInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=williams-combo.d.ts.map