代码:
def macd(prices):
print "Running MACD"
prices = np.asarray(prices)
print prices
macd, macdsignal, macdhist = MACD(prices, fastperiod=12, slowperiod=26, signalperiod=9)
print "MACD "+macd
解释:
我试图对包含收盘价的 Python 列表进行一些分析。
我知道我必须在将列表移交给 TA-Lib 之前对其进行转换,因为我已经看到所有这样做的示例。
然而,这遇到了一个 only length-1 arrays can be converted to Python scalars