我正在尝试使用 pandas resample 函数将 M1 OHLC 数据转换为 M15,但没有得到任何结果,这就是我所拥有的:
df = pd.read_csv("EURUSD.csv")
df = df.set_index("DatetimeIndex")
print("\tDone!")
df = df.resample('1H').agg({'Open': 'first',
'High': 'max',
'Low': 'min',
'Close': 'last'})
我得到错误
TypeError: Only valid with DatetimeIndex, TimedeltaIndex or PeriodIndex, but got an instance of 'Index'
我尝试删除.set_index
它,它给出了另一个错误,说不能做 RangeIndex
我拥有的数据如下所示: