stock-indicator
Version:
Stock Indicator Library
13 lines (12 loc) • 353 B
TypeScript
import { TMixed } from "../common";
/**
* - 计算BOLL指标
* @param {number[]} CLOSE - 收盘价序列
* @param {number} M - 周期 default: 20
* @returns {{ BOLL: TMixed[]; UB: TMixed[]; LB: TMixed[] }} - BOLL指标结果
*/
export declare function BOLL(CLOSE: number[], M?: number): {
BOLL: TMixed[];
UB: TMixed[];
LB: TMixed[];
};