trading-utils
Version:
A collection of helpful trading utility functions.
9 lines • 335 B
TypeScript
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