python - plot.ly 烛台图通过 matplotlib

标签 python matplotlib graph plotly

使用以下 example我能够使用 matplotlib 创建烛台图。

import matplotlib.pyplot as plt
from matplotlib.dates import DateFormatter, WeekdayLocator,\
     DayLocator, MONDAY
from matplotlib.finance import quotes_historical_yahoo_ohlc, candlestick_ohlc


# (Year, month, day) tuples suffice as args for quotes_historical_yahoo
date1 = (2004, 2, 1)
date2 = (2004, 4, 12)


mondays = WeekdayLocator(MONDAY)        # major ticks on the mondays
alldays = DayLocator()              # minor ticks on the days
weekFormatter = DateFormatter('%b %d')  # e.g., Jan 12
dayFormatter = DateFormatter('%d')      # e.g., 12

quotes = quotes_historical_yahoo_ohlc('INTC', date1, date2)
if len(quotes) == 0:
    raise SystemExit

fig, ax = plt.subplots()
fig.subplots_adjust(bottom=0.2)
ax.xaxis.set_major_locator(mondays)
ax.xaxis.set_minor_locator(alldays)
ax.xaxis.set_major_formatter(weekFormatter)
#ax.xaxis.set_minor_formatter(dayFormatter)

#plot_day_summary(ax, quotes, ticksize=3)
candlestick_ohlc(ax, quotes, width=0.6)

ax.xaxis_date()
ax.autoscale_view()
plt.setp(plt.gca().get_xticklabels(), rotation=45, horizontalalignment='right')

plt.show()

并查看 plot.ly 的 APIs您可以使用 plot.ly 在线发布 matplotlib 图形。我在上面的代码中添加了以下内容:

import matplotlib.mlab as mlab
import plotly.plotly as py

py.sign_in('xxx', 'xxxx')
plot_url = py.plot_mpl(fig)

plot.ly 产生了以下 graph ,如果您放大图表,您会发现该图表实际上并没有显示烛台的主体,只是上下阴影。我是否错误地导入了图形?还是 plot.ly 不支持烛条图,即使它们是通过 matplotlib 生成的?

最佳答案

发现截至 2015 年 5 月 27 日,Plot.ly 目前不支持烛台。

关于python - plot.ly 烛台图通过 matplotlib,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30466805/

相关文章:

python - cython memoryview 比预期慢

c++ - 如何查找整个图是否是一个强连通分量?

c++ - 我使用哪种增强图算法?

python - 让 turtle 保持在一个正方形内,没有输出,也没有错误

python - 我怎样才能不出现 mysql 转换元组错误?

python - 将对象添加到字典的开头

python - Matplotlib imshow() 问题 : title on top of top xlabels, 和 ylabels 未在 pdf 中对齐

python - 带有矢量文本的 matplotlib 位图图

python - 将 Matplotlib 轮廓 2D 和 1D 图中的 X 轴与颜色条图例对齐并共享

database - 无环有向图祖先的高效数据库查询