/** * Elastic Volume Weighted MA & Envelope * * EVWMA with envelope bands. Running average weighted by volume relative to * average volume over the window. Envelope bands at +/- percentage. * * Reference: TradingView "Elastic Volume Weighted MA & Envelope" (community) */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar, type SourceType } from 'oakscriptjs'; export interface EVWMAEnvelopeInputs { length: number; envelopePct: number; src: SourceType; } export declare const defaultInputs: EVWMAEnvelopeInputs; 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 EVWMAEnvelope: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: EVWMAEnvelopeInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=evwma-envelope.d.ts.map