/** * GMMA - Guppy Multiple Moving Average * * Two groups of EMAs: short-term (3,5,8,10,12,15) and long-term (30,35,40,45,50,60). * Short group reflects trader sentiment, long group reflects investor sentiment. * Convergence/divergence between groups signals trend changes. * * Reference: TradingView "Guppy Multiple Moving Average" by Daryl Guppy */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar, type SourceType } from 'oakscriptjs'; export interface GMMAInputs { src: SourceType; } export declare const defaultInputs: GMMAInputs; 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 GMMA: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: GMMAInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=gmma.d.ts.map