indicatorts
Version:
Stock technical indicators and strategies in TypeScript for browser and server programs.
13 lines (12 loc) • 400 B
TypeScript
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): Action[];
export { mfiStrategy as moneyFlowIndexStrategy };