/** * RCI 3 Lines * * Three Rank Correlation Index (Spearman rank correlation) lines * at different periods. Oscillates between -100 and +100. * * Reference: TradingView "RCI 3 Lines" (community) */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar } from 'oakscriptjs'; export interface RCI3LinesInputs { shortLen: number; midLen: number; longLen: number; } export declare const defaultInputs: RCI3LinesInputs; 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 RCI3Lines: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: RCI3LinesInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=rci-3lines.d.ts.map