UNPKG

trading-utils

Version:

A collection of helpful trading utility functions.

9 lines 336 B
import { TradingSuggestion } from '../types'; export interface EmaIndicator { calculate(prices: number[]): TradingSuggestion; } export declare class EmaIndicatorImpl implements EmaIndicator { calculate(prices: number[]): TradingSuggestion; private calculateEMAIndicators; } //# sourceMappingURL=emaIndicator.d.ts.map