UNPKG

vases-indicatorts

Version:

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

11 lines (10 loc) 313 B
import { Asset } from '../asset'; import { Action } from '../action'; import { RSIConfig } from '../../indicator/momentum/relativeStrengthIndex'; export declare function rsi2Strategy(asset: Asset, config?: RSIConfig): { actions: Action[]; result: { rsi: number[]; sma: number[]; }; };