UNPKG

trading-utils

Version:

A collection of helpful trading utility functions.

12 lines 292 B
export declare type TradingSuggestion = 'LONG' | 'SHORT' | 'NEUTRAL'; export interface OhlcPrice { open: number; high: number; low: number; close: number; } export interface MACDDataPoint { macd: number; signal: number; } //# sourceMappingURL=types.d.ts.map