/** * AI-EngulfingCandle * * Engulfing candlestick pattern detection with SMA trend context. * Bullish engulfing in downtrend, bearish engulfing in uptrend. * * Reference: TradingView "AI-EngulfingCandle" (community) */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar } from 'oakscriptjs'; import type { MarkerData } from '../types'; export interface AIEngulfingInputs { trendLen: number; } export declare const defaultInputs: AIEngulfingInputs; 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 AIEngulfing: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: AIEngulfingInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=ai-engulfing.d.ts.map