UNPKG
jesse-indicators
Version:
latest (0.4.1)
0.4.1
0.4.0
0.3.0
0.2.5
0.2.4
0.2.3
0.2.2
0.2.1
0.2.0
0.1.0
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
A Technical indicator library for TypeScript.
github.com/jesse-ai/indicators
jesse-ai/indicators
jesse-indicators
/
src
/
index.ts
17 lines
(14 loc)
•
285 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import
SMA
from
'./SMA'
import
EMA
, { quickEMA }
from
'./EMA'
import
RSI
, { quickRSI }
from
'./RSI'
import
{ stoch, smoothedStoch }
from
'./StochRSI'
const
Indicators
= {
SMA
,
EMA
, quickEMA,
RSI
, quickRSI, stoch, smoothedStoch }
export
default
Indicators