import type { Transducer } from "@thi.ng/transducers"; /** * https://www.fidelity.com/learning-center/trading-investing/technical-analysis/technical-indicator-guide/hull-moving-average * * Note: the number of results will be `period + floor(sqrt(period)) - 2` less * than the number of processed inputs. * * @param period - */ export declare function hma(period: number): Transducer; export declare function hma(period: number, src: Iterable): IterableIterator; //# sourceMappingURL=hma.d.ts.map