/** * Hull Suite * * Three Hull MA variants: HMA, EHMA (EMA-based), THMA (Triple). * Outputs MHULL (current) and SHULL (2-bar lag) for band/cloud display. * * Reference: TradingView "Hull Suite by InSilico" */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar, type SourceType } from 'oakscriptjs'; export interface HullSuiteInputs { source: SourceType; mode: string; length: number; } export declare const defaultInputs: HullSuiteInputs; 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 HullSuite: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: HullSuiteInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=hull-suite.d.ts.map