UNPKG

indicatorts

Version:

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

9 lines (8 loc) 107 B
/** * Indicator trend. */ export declare enum Trend { FALLING = -1, STABLE = 0, RISING = 1 }