0
私は、pythonには別の数があると思います。しかし、私はこの問題を解決する方法を知っています。どんなアドバイスもありがとうございます。IndexError:0軸のインデックスが範囲外です。python numpy
import numpy
test = numpy.array([9,1,3,4,8,7,2,5,6,5,-10,12,-15,19,-20,22,-53,45,43,43,23,-65,-23,46,44,67,79,5,-34,32,-56,-3,1,15,22,3])
N = 0
N1 = 3
while N < len(test):
LOW = numpy.amin(test[N:N1])
CLOSE = test[N1]
HIGH = numpy.amax(test[N:N1])
stochastic = float(CLOSE-LOW)/(HIGH-LOW)*100.00
print stochastic
N1=N1+1
N=N+1
エラー:
indexError: index 36 is out of bounds for axis 0 with size 36
すごいです –