/** * Median Indicator * * Shows the median price with ATR-based bands and EMA. */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar } from 'oakscriptjs'; export interface MedianInputs { /** Median calculation length */ length: number; /** ATR length */ atrLength: number; /** ATR multiplier for bands */ atrMult: number; } export declare const defaultInputs: MedianInputs; 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 Median: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: MedianInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=median.d.ts.map