trading-utils
Version:
A collection of helpful trading utility functions.
20 lines (13 loc) ⢠351 B
Markdown
# Trading Utils
š§ In development (APIs may change) š§
A collection of helpful trading utility functions fully written in typescript.
## Available Indicators
* RSI
* EMA
* MACD
* Stochastic
## Example usage
```typescript
import { rsiIndicator } from 'trading-utils'
rsiIndicator.calculate([94.449997, 94.769997, ...])
```