/** * Super SuperTrend Three Line * * Three SuperTrend lines at different ATR multipliers for layered * trend confirmation. * * Reference: TradingView "Super SuperTrend" (community) */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar } from 'oakscriptjs'; import type { MarkerData, PlotCandleData } from '../types'; export interface SuperSupertrendInputs { atrLen: number; mult1: number; mult2: number; mult3: number; } export declare const defaultInputs: SuperSupertrendInputs; 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[]; plotCandles: Record; }; export declare const SuperSupertrend: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: SuperSupertrendInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=super-supertrend.d.ts.map