/** * Three Moving Averages * * Three configurable MAs with selectable type (EMA/SMA/WMA). * * Reference: TradingView "Three Moving Averages" (community) */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar, type SourceType } from 'oakscriptjs'; export interface ThreeMovingAveragesInputs { len1: number; len2: number; len3: number; maType: string; src: SourceType; } export declare const defaultInputs: ThreeMovingAveragesInputs; 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 ThreeMovingAverages: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: ThreeMovingAveragesInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=three-moving-averages.d.ts.map