/** * EMA 20/50/100/200 * * Four EMA lines at common periods: 20, 50, 100, 200. * * Reference: TradingView "EMA 20/50/100/200" (community) */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar, type SourceType } from 'oakscriptjs'; export interface EMAMultiInputs { src: SourceType; } export declare const defaultInputs: EMAMultiInputs; 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 EMAMulti: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: EMAMultiInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=ema-multi.d.ts.map