/** * All Candlestick Patterns Identifier * * Detects common candlestick patterns: Doji, Hammer, Engulfing, * Morning Star, and Evening Star. Outputs markers on detected bars. * * Reference: TradingView "All Candlestick Patterns Identifier" (community) */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar } from 'oakscriptjs'; import type { MarkerData } from '../types'; export interface AllCandlestickPatternsInputs { } export declare const defaultInputs: AllCandlestickPatternsInputs; 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 AllCandlestickPatterns: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: AllCandlestickPatternsInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=all-candlestick-patterns.d.ts.map