import type { Transducer } from "@thi.ng/transducers"; export interface BollingerBand { min: number; max: number; mean: number; pb: number; } /** * Computes Bollinger bands using sliding window. * * https://en.wikipedia.org/wiki/Bollinger_Bands * * Note: the number of results will be `period-1` less than the * number of processed inputs. * * @param period - * @param sd - */ export declare function bollinger(period?: number, sd?: number): Transducer; export declare function bollinger(src: Iterable): IterableIterator; export declare function bollinger(period: number, src: Iterable): IterableIterator; export declare function bollinger(period: number, sd: number, src: Iterable): IterableIterator; //# sourceMappingURL=bollinger.d.ts.map