/** * RedK EVEREX - Effort Versus Results Explorer v2.0 * * Compares volume "effort" against price "result" using 6 price strength * components (bar closing, spread-to-range, relative spread, 2-bar closing, * 2-bar shift-to-range, 2-bar relative shift). Normalizes volume and price * via EMA, then computes bulls/bears RSI-like index (RROF). * Bias/Sentiment from longer-period RROF. EVEREX equalizer histogram * with 4-color scheme. Markers for EoM (Ease of Move) and Compression. * * Reference: TradingView "RedK EVEREX v2.0" by RedKTrader */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar } from 'oakscriptjs'; import type { MarkerData } from '../types'; export interface RedkEverexInputs { length: number; smooth: number; sigLength: number; lookback: number; biasLength: number; showMarkers: boolean; } export declare const defaultInputs: RedkEverexInputs; 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[]; }; export declare const RedkEverex: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: RedkEverexInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=redk-everex.d.ts.map