/** * Big Snapper Alerts R3.0 by JustUncleL * * Multi-MA signal indicator with ColouredMA (HullMA default), Fast/Medium/Slow MAs, * SuperTrend filtering, Bollinger Band OutsideIn swing filter, and buy/sell markers. * Supports 11 MA types: SMA, EMA, WMA, VWMA, SMMA, DEMA, TEMA, HullMA, ZEMA, TMA, SSMA. * * Reference: TradingView "Big Snapper Alerts R3.0 by JustUncleL" */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar } from 'oakscriptjs'; import type { MarkerData } from '../types'; export interface BigSnapperAlertsInputs { typeColoured: string; lenColoured: number; typeFast: string; lenFast: number; typeMedium: string; lenMedium: number; typeSlow: string; lenSlow: number; filterOption: string; showMALines: boolean; showSuperTrend: boolean; sFactor: number; sPd: number; bbLength: number; bbStddev: number; oiLength: number; } export declare const defaultInputs: BigSnapperAlertsInputs; 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 BigSnapperAlerts: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: BigSnapperAlertsInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=big-snapper-alerts.d.ts.map