我可以使用 matplotlib 为 tkinter 画布制作多种绘图,但我无法弄清楚如何使用 mplfinance 绘图类型来做到这一点,据我所知,绘图是相当自动化和高级别的,因此调用“拥有”无花果和斧头。有没有人有幸让这些优秀的情节出现在 tkinter guis 中?
问问题
1271 次
1 回答
2
Daniel Goldfarb 在最新版本的 mplfinance 中添加了功能 ( returnfig = True
) 以将绘图元素作为对象返回。例如,与 tkinter 一起使用的烛台图表的调用如下所示:
fig, ax = mplfinance.plot(
<dataframe>,
type='candle',
style='charles',
title=<plot title>,
ylabel='Price ($)',
volume=True,
ylabel_lower='Shares\nTraded',
show_nontrading=True,
returnfig = True
)
它工作得很好。
于 2020-06-02T22:29:25.770 回答