/** * SuperTrend Channels * * Standard SuperTrend with channel bands derived from highest/lowest * of the SuperTrend line over a lookback period. * * Reference: TradingView "SuperTrend Channels" (community) */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar } from 'oakscriptjs'; export interface SupertrendChannelsInputs { atrLen: number; factor: number; channelLen: number; } export declare const defaultInputs: SupertrendChannelsInputs; 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 SupertrendChannels: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: SupertrendChannelsInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=supertrend-channels.d.ts.map