UNPKG

vases-indicatorts

Version:

Stock technical indicators and strategies in TypeScript for browser and server programs.

16 lines (15 loc) 440 B
import { MFIConfig } from '../../indicator/volume/moneyFlowIndex'; import { Action } from '../action'; import { Asset } from '../asset'; /** * Money flow index strategy. * * @param asset asset object. * @param config configuration. * @return strategy actions. */ export declare function mfiStrategy(asset: Asset, config?: MFIConfig): { actions: Action[]; result: number[]; }; export { mfiStrategy as moneyFlowIndexStrategy };