/** * SSL Channel * * Simple crossover channel: SMA of highs and SMA of lows. * When close > SMA(high): uptrend → sslUp = SMA(high), sslDown = SMA(low). * When close < SMA(low): downtrend → sslUp = SMA(low), sslDown = SMA(high). * * Reference: TradingView "SSL channel" */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar } from 'oakscriptjs'; export interface SSLChannelInputs { period: number; } export declare const defaultInputs: SSLChannelInputs; 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 SSLChannel: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: SSLChannelInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=ssl-channel.d.ts.map