Python 3 Jupyter Notebook-绘制蜡烛图

时间:2019-12-16 20:07:07

标签: python python-3.x jupyter-notebook

import pandas_datareader.data as web
from datetime import datetime

start = datetime(2019, 1, 1)
end   = datetime(2019, 12, 15)

dox = web.DataReader('DOX', 'yahoo', start, end)

dox是

enter image description here

看到了-https://plot.ly/python/candlestick-charts/ 但它只能在python代码上运行并创建HTML网站,而不是jupyter输出

此处是所需的输出(例如) enter image description here

0 个答案:

没有答案