/** * Triple Exponential Moving Average (TEMA) Indicator * * Hand-optimized implementation using oakscriptjs. * Further reduces lag: TEMA = 3*EMA - 3*EMA(EMA) + EMA(EMA(EMA)) */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar, type SourceType } from 'oakscriptjs'; export interface TEMAInputs { length: number; src: SourceType; offset: number; } export declare const defaultInputs: TEMAInputs; 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 TEMA: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: TEMAInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=tema.d.ts.map