/** * Multiple Moving Averages * * Six MAs at periods 10, 20, 50, 100, 150, 200 with selectable type. * * Reference: TradingView "Multiple Moving Averages" (community) */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar, type SourceType } from 'oakscriptjs'; export interface MultipleMAInputs { maType: string; src: SourceType; } export declare const defaultInputs: MultipleMAInputs; 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 MultipleMA: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: MultipleMAInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=multiple-ma.d.ts.map