/** * Matrix Series * * Oscillator with plotcandle visualization, S/R zone lines, * OB/OS cross markers, hlines, and fills. * * Reference: TradingView "Matrix Series" (community) */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar } from 'oakscriptjs'; import type { PlotCandleData, MarkerData } from '../types'; export interface MatrixSeriesInputs { smoother: number; supResPeriod: number; supResPercentage: number; pricePeriod: number; ob: number; os: number; showOBOS: boolean; dynamic: boolean; } export declare const defaultInputs: MatrixSeriesInputs; 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 & { plotCandles: { candle0: PlotCandleData[]; }; markers: MarkerData[]; }; export declare const MatrixSeries: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: MatrixSeriesInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=matrix-series.d.ts.map