UNPKG

vases-indicatorts

Version:

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

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