anandanand84 / technicalindicators

A javascript technical indicators written in typescript with pattern recognition right in the browser
MIT License
2.16k stars 558 forks source link

bad ts declaration for ADX nextValue #229

Open andrekadlcek opened 3 years ago

andrekadlcek commented 3 years ago

Hi, I found a bad ts declaration for ADX nextValue value in ADX.d.ts line 18 nextValue(price: number): ADXOutput | undefined; should be nextValue(price: { high: number; low: number; close: number; }): ADXOutput | undefined;

anyway good work thank you

Andre