/** * Chop Zone Indicator * * Uses EMA angle to determine trending vs choppy market conditions. * Output is a constant 1 (column plot) with color based on the EMA angle. * * PineScript reference: plot(1, "Chop Zone", color = chopZoneColor, style = plot.style_columns) * Plus barcolor is not used — the columns themselves are colored per-bar. */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar } from 'oakscriptjs'; export interface ChopZoneInputs { } export declare const defaultInputs: ChopZoneInputs; 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 ChopZone: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: ChopZoneInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=chop-zone.d.ts.map