UNPKG

trading-utils

Version:

A collection of helpful trading utility functions.

9 lines 335 B
import { TradingSuggestion } from '../types'; export interface RsiIndicator { calculate(prices: number[]): TradingSuggestion; } export declare class RsiIndicatorImpl implements RsiIndicator { calculate(prices: number[]): TradingSuggestion; private calculateRSIIndicator; } //# sourceMappingURL=rsiIndicator.d.ts.map