/** * IDEAL BB with MA (With Alerts) by Adarsh * * Pine: overlay=true, multiple visual elements: * 1) NMA (3rd-gen Moving Average) as stepline in black * 2) VWAP in pink * 3) BB basis (SMA 20) in red, BB upper in blue, BB lower in dark purple * 4) Fill between BB upper and lower (blue) * 5) Hull trend line A (HMA with Kahlman) * 6) Hull trend line B (HMA3 with Kahlman) * 7) Fill between Hull lines (lime when bullish, red when bearish) * 8) Buy/Sell markers from Hull crossovers * * Reference: TradingView "IDEAL BB with MA (With Alerts) by Adarsh" (community) */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar, type SourceType } from 'oakscriptjs'; import type { MarkerData } from '../types'; export interface IdealBbMaInputs { length1: number; length2: number; maType: string; src: SourceType; hullLength: number; hullGain: number; useKahlman: boolean; } export declare const defaultInputs: IdealBbMaInputs; 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 & { markers: MarkerData[]; }; export declare const IdealBbMa: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: IdealBbMaInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=ideal-bb-ma.d.ts.map