/** * TKP T3 Trend with PSAR * * Tillson T3 moving average combined with Parabolic SAR for trend confirmation. * T3 uses a 6-stage EMA cascade with volume factor coefficients. * PSAR provides additional trend direction via manual computation. * * Reference: TradingView "TKP T3 Trend with PSAR" (TV#737) */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar, type SourceType } from 'oakscriptjs'; import type { PlotCandleData } from '../types'; export interface T3PsarInputs { t3Len: number; t3SlowLen: number; t3Factor: number; sarStart: number; sarInc: number; sarMax: number; src: SourceType; showHA: boolean; } export declare const defaultInputs: T3PsarInputs; export declare const inputConfig: InputConfig[]; export declare const plotConfig: PlotConfig[]; export declare const plotCandleConfig: { id: string; title: string; }[]; export declare const metadata: { title: string; shortTitle: string; overlay: boolean; }; export declare function calculate(bars: Bar[], inputs?: Partial): IndicatorResult & { plotCandles?: Record; }; export declare const T3Psar: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: T3PsarInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; plotCandleConfig: { id: string; title: string; }[]; }; //# sourceMappingURL=t3-psar.d.ts.map