/** * UCS Murrey's Math Oscillator V2 * * Murrey Math Lines as oscillator. Normalizes price position within * highest high / lowest low range to 0-100 scale. * Key levels at 0, 12.5, 25, 37.5, 50, 62.5, 75, 87.5, 100. * * Reference: TradingView "UCS_Murrey's Math Oscillator V2" (community) */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar } from 'oakscriptjs'; import type { BarColorData } from '../types'; export interface MurreysOscillatorInputs { length: number; } export declare const defaultInputs: MurreysOscillatorInputs; 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 & { barColors: BarColorData[]; }; export declare const MurreysOscillator: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: MurreysOscillatorInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=murreys-math-osc.d.ts.map