我是Coding的新手,所以请耐心等待我;) 这是我的代码无法正常工作,我尝试了几个小时来解决它,但每次我遇到另一个错误。
import pandas as pd
import numpy as np
import talib.abstract as ta
dfBTCUSD_1h = pd.read_csv('Bitfinex_BTCUSD_1h.csv', skiprows=1)
dfBTCUSD_1h.sort_values(by='Date') # This now sorts in date order
open = dfBTCUSD_1h.iloc[:,2]
high = dfBTCUSD_1h.iloc[:,3]
low = dfBTCUSD_1h.iloc[:,4]
close =dfBTCUSD_1h.iloc[:,5]
short_ema = ta.EMA(close,timeperiod=10)
TypeError: cannot convert the series to <class 'int'>
如何将pandas系列编辑为ta-lib的工作文件?
最好的问候
答案 0 :(得分:0)
不要向code
提供ta.EMA
,而是执行以下操作:
short_ema = ta.EMA(close.astype(float),timeperiod=10)
Talib函数通常将ntype float的numpy数组作为输入