/** * Weis Wave Volume * * Cumulative volume that resets on trend direction change. * Positive (green) in uptrend, negative (red) in downtrend. * * Reference: TradingView "Weis Wave Volume" (community) */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar } from 'oakscriptjs'; export interface WeisWaveVolumeInputs { trendLen: number; } export declare const defaultInputs: WeisWaveVolumeInputs; 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 WeisWaveVolume: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: WeisWaveVolumeInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=weis-wave-volume.d.ts.map