/** * Super Guppy R1.0 * * Multi-EMA trend alignment indicator. * 11 Fast EMAs (3-23) and 16 Slow EMAs (25-70) detect trend strength and alignment. * Fast/slow bands are filled with alignment-dependent colors. * Swing and Break buy/sell signals on alignment changes. * * Reference: TradingView "Super Guppy R1.0" by JustUncleL */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar } from 'oakscriptjs'; import type { MarkerData, BarColorData } from '../types'; export interface SuperGuppyInputs { showBreak: boolean; showSwing: boolean; lookback: number; } export declare const defaultInputs: SuperGuppyInputs; 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[]; barColors: BarColorData[]; }; export declare const SuperGuppy: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: SuperGuppyInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=super-guppy.d.ts.map