UNPKG

trading-utils

Version:

A collection of helpful trading utility functions.

9 lines 392 B
import { OhlcPrice, TradingSuggestion } from '../types'; export interface StochasticIndicator { calculate(ohlcPrices: OhlcPrice[]): TradingSuggestion; } export declare class StochasticIndicatorImpl implements StochasticIndicator { calculate(ohlcPrices: OhlcPrice[]): TradingSuggestion; private calculateStochasticValues; } //# sourceMappingURL=stochasticIndicator.d.ts.map