indicatorts
Version:
Stock technical indicators and strategies in TypeScript for browser and server programs.
11 lines (10 loc) • 330 B
TypeScript
import { Asset } from '../asset';
import { Action } from '../action';
import { KDJConfig } from '../../indicator/trend/randomIndex';
/**
* KDJ strategy.
* @param asset asset object.
* @param config configuration.
* @return strategy actions.
*/
export declare function kdjStrategy(asset: Asset, config?: KDJConfig): Action[];