UNPKG

indicatorts

Version:

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

11 lines (10 loc) 281 B
import { Asset } from '../asset'; import { Action } from '../action'; /** * Balance of power strategy. * * @param asset asset object. * @return strategy actions. */ export declare function bopStrategy(asset: Asset): Action[]; export { bopStrategy as balanceOfPowerStrategy };