/** * Volumatic Support/Resistance Levels [BigBeluga] * * Dynamic support/resistance based on volume concentration. * Uses highest/lowest with volume percentile filtering. * Fills with gradient coloring based on volume strength. * * Reference: TradingView "Volumatic Support/Resistance Levels [BigBeluga]" by BigBeluga */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar } from 'oakscriptjs'; import type { MarkerData, BarColorData } from '../types'; export interface VolumaticSRLevelsInputs { length: number; upperThreshold: number; lowerThreshold: number; barsThreshold: number; } export declare const defaultInputs: VolumaticSRLevelsInputs; 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 & { markers: MarkerData[]; barColors: BarColorData[]; }; export declare const VolumaticSRLevels: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: VolumaticSRLevelsInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=volumatic-sr-levels.d.ts.map