UNPKG

vases-indicatorts

Version:

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

14 lines (13 loc) 382 B
import { Asset } from '../asset'; import { Action } from '../action'; import { KDJConfig, KDJResult } from '../../indicator/trend/randomIndex'; /** * KDJ strategy. * @param asset asset object. * @param config configuration. * @return strategy actions. */ export declare function kdjStrategy(asset: Asset, config?: KDJConfig): { actions: Action[]; result: KDJResult; };