/** * Fibonacci Zone * * Fibonacci zones as bands. Plots the golden zone (38.2%-61.8%) boundaries * and the 50% midline based on highest high and lowest low. * * Reference: TradingView "Fibonacci Zone" (community) */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar } from 'oakscriptjs'; export interface FibonacciZoneInputs { length: number; } export declare const defaultInputs: FibonacciZoneInputs; 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 FibonacciZone: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: FibonacciZoneInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=fibonacci-zone.d.ts.map