UNPKG

indicatorts

Version:

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

7 lines (6 loc) 157 B
import { Action } from './action'; import { Asset } from './asset'; /** * Strategy function. */ export type StrategyFunction = (asset: Asset) => Action[];