/** * Know Sure Thing (KST) Indicator * * Momentum oscillator based on rate of change for four different timeframes, * smoothed by SMAs. Signal line is SMA of KST. */ import { type IndicatorResult, type InputConfig, type PlotConfig, type HLineConfig, type Bar } from 'oakscriptjs'; export interface KSTInputs { roclen1: number; roclen2: number; roclen3: number; roclen4: number; smalen1: number; smalen2: number; smalen3: number; smalen4: number; siglen: number; } export declare const defaultInputs: KSTInputs; export declare const inputConfig: InputConfig[]; export declare const plotConfig: PlotConfig[]; export declare const hlineConfig: HLineConfig[]; export declare const metadata: { title: string; shortTitle: string; overlay: boolean; }; export declare function calculate(bars: Bar[], inputs?: Partial): IndicatorResult; export declare const KnowSureThing: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: KSTInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; hlineConfig: HLineConfig[]; }; //# sourceMappingURL=kst.d.ts.map