/** * MavilimW * * Cascaded WMA chain: each level feeds into the next with increasing Fibonacci-like periods. * M1(fmal) → M2(smal) → M3(fmal+smal) → M4(smal+tmal) → M5(tmal+Fmal) → MAVW(Fmal+Ftmal) * * Reference: TradingView "MavilimW" by KivancOzbilgic */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar } from 'oakscriptjs'; export interface MavilimWInputs { firstMALength: number; secondMALength: number; } export declare const defaultInputs: MavilimWInputs; 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 MavilimW: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: MavilimWInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=mavilimw.d.ts.map