/** * Range Identifier * * Tracks expanding consolidation ranges. When price stays within the * previous range, the range expands to encompass new highs/lows. * When price breaks out, the range resets. * * Reference: TradingView "Range Identifier [LazyBear]" */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar } from 'oakscriptjs'; export interface RangeIdentifierInputs { emaLength: number; } export declare const defaultInputs: RangeIdentifierInputs; 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 RangeIdentifier: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: RangeIdentifierInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=range-identifier.d.ts.map