UNPKG

vases-indicatorts

Version:

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

13 lines (12 loc) 272 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): { actions: Action[]; result: number[]; };