markcheno / go-talib

A pure Go port of TA-Lib (http://ta-lib.org)
MIT License
769 stars 214 forks source link

Natr index out of range #15

Closed wzy2687 closed 5 years ago

wzy2687 commented 5 years ago
data =[]float64 {1,2,3}
Natr(data,data,data,3)
func Natr(....).. {
...
prevATRTemp := Sma(tr, inTimePeriod)
prevATR := prevATRTemp[inTimePeriod]   // will panic 
...
}
wzy2687 commented 5 years ago

data err.