UNPKG

stock-indicator

Version:

Stock Indicator Library

15 lines (14 loc) 298 B
import { TMixed } from "../common"; /** * * @param CLOSE * @param VOL * @param M * @returns * 传入的VOL 单位为股,需要转换为手 */ export declare function OBV(CLOSE: number[], VOL: number[], M?: number): { OBV: TMixed[]; MAOBV: TMixed[]; [key: string]: TMixed[]; };