UNPKG

indicatorts

Version:

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

13 lines (12 loc) 255 B
import { StrategyFunction } from '../strategy/strategyFunction'; /** * Strategy info. */ export interface StrategyInfo { name: string; strategy: StrategyFunction; } /** * Strategy infos. */ export declare const STRATEGY_INFOS: StrategyInfo[];