/** * Volume Flow v3 * * Bull/bear volume analysis with moving averages, spike detection, and difference area. * Plots: Volume (columns), Bull MA, Bear MA, Bull Vol Spike, Bear Vol Spike, Difference Value. * MA type selectable: Simple, Exponential, Double Exponential. * * Reference: TradingView "Volume Flow v3" by DepthHouse / oh92 (community) */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar } from 'oakscriptjs'; export interface VolumeFlowV3Inputs { maType: string; length: number; factor: number; } export declare const defaultInputs: VolumeFlowV3Inputs; 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 VolumeFlowV3: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: VolumeFlowV3Inputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=volume-flow-v3.d.ts.map