/** * PredictiveChannels * * Dynamic support/resistance channels that adapt based on ATR. * Maintains an adaptive average that resets when price deviates beyond ATR, * then creates R2/R1/avg/S1/S2 channel levels. * * Reference: TradingView "Predictive Channels [LuxAlgo]" by LuxAlgo */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar } from 'oakscriptjs'; export interface PredictiveChannelsInputs { factor: number; slope: number; } export declare const defaultInputs: PredictiveChannelsInputs; 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; export declare const PredictiveChannels: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: PredictiveChannelsInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=predictive-channels.d.ts.map