/** * TTM Squeeze Pro * * John Carter's TTM Squeeze Pro. Three Keltner Channel widths (1x, 1.5x, 2x) * for squeeze detection with enhanced squeeze classification. * * Reference: TradingView "TTM Squeeze Pro" by John Carter */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar, type SourceType } from 'oakscriptjs'; export interface TTMSqueezeProInputs { bbLength: number; bbMult: number; kcLength: number; kcMult1: number; kcMult2: number; kcMult3: number; src: SourceType; } export declare const defaultInputs: TTMSqueezeProInputs; 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 TTMSqueezePro: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: TTMSqueezeProInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=ttm-squeeze-pro.d.ts.map