/** * HIGH and LOW Optimized Trend Tracker (HOTT LOTT) * * Applies OTT (Optimized Trend Tracker) to highest-high and lowest-low * with selectable MA types. HOTT tracks upper trend, LOTT tracks lower trend. * Bar colors indicate breakout direction. * * Reference: TradingView "HOTT-LOTT" by KivancOzbilgic */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar } from 'oakscriptjs'; import type { BarColorData } from '../types'; export interface HottLottInputs { ottPeriod: number; percent: number; hlLength: number; maType: string; } export declare const defaultInputs: HottLottInputs; 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 HottLott: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: HottLottInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=hott-lott.d.ts.map