/** * Price Volume Trend (PVT) Indicator * * Cumulative volume indicator that relates volume to price change. * PVT = cumulative(change(close) / close[1] * volume) */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar } from 'oakscriptjs'; export interface PVTInputs { } export declare const defaultInputs: PVTInputs; 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 PVT: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: PVTInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=pvt.d.ts.map