我想从晨星导入数据并生成烛台图表。
import numpy as np
import pandas as pd
import pandas_datareader.data as web
import mpl_finance as mpf
import matplotlib.pyplot as plt
AAPL = web.DataReader('AAPL', 'morningstar', start = '1/1/2000',end = '5/29/2018')
fig, ax = plt.subplots(figsize = (8,5))
fig.subplots_adjust(bottom=0.2)
mpf.candlestick_ohlc(ax, AAPL, width = 0.6, colorup = 'b', colordown = 'r', alpha = 0.75)
ax.xaxis_date()
ax.autoscale_view()
ax.xaxis.grid(True, 'major')
ax.grid(True)
我收到错误:
TypeError:不支持的操作数类型 - :' str'和' str'
任何帮助非常感谢
答案 0 :(得分:0)
您可以尝试将数据转换为浮点数:AAPL.astype(float)
,看起来可能有字符串而不是数字。
此外,我认为你必须使用mpl_finance candlestick_ohlc
的序数日期:
zip(mdates.date2num(AAPL.index.to_pydatetime()), AAPL['Open'], AAPL['High'], AAPL['Low'], AAPL['Close'], AAPL['Volume'])
然后在candlestick_ohlc
而不是AAPL
中使用它。