/** * Custom Center of Gravity Double Channel [LazyBear] * * COG (linreg) base line with inner BB channel (stdev-based) and outer STARC channel (ATR-based). * Squeeze markers plotted when ATR channel is inside BB channel. * * Reference: TradingView "COG Double Channel [LazyBear]" community indicator */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar, type SourceType } from 'oakscriptjs'; import type { MarkerData } from '../types'; export interface COGChannelInputs { length: number; numDevs: number; src: SourceType; } export declare const defaultInputs: COGChannelInputs; 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 COGChannel: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: COGChannelInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=cog-channel.d.ts.map