UNPKG

indicatorts

Version:

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

10 lines (9 loc) 232 B
import { Asset } from './asset'; import { Action } from './action'; /** * Buy and hold strategy. * * @param asset asset object. * @return strategy actions. */ export declare function buyAndHoldStrategy(asset: Asset): Action[];