UNPKG

indicatorts

Version:

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

11 lines (10 loc) 332 B
import { Asset } from '../asset'; import { Action } from '../action'; import { AroonConfig } from '../../indicator/trend/aroon'; /** * Aroon strategy. * @param asset asset object. * @param config configuration. * @return strategy actions. */ export declare function aroonStrategy(asset: Asset, config?: AroonConfig): Action[];