- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试导入 matplotlib.finance
python中的模块,以便我可以制作烛台OCHL图。我的 matplotlib.pyplot
版本是 2.00。我尝试使用以下命令导入它:
import matplotlib.finance
from matplotlib.finance import candlestick_ohlc
warnings.warn(message, mplDeprecation, stacklevel=1) MatplotlibDeprecationWarning: The finance module has been deprecated in mpl 2.0 and will be removed in mpl 2.2. Please use the module mpl_finance instead.
import mpl_finance
ImportError: No module named 'mpl_finance'
matplotlib.pyplot
导入烛台应该怎么做?
最佳答案
我已经停止使用 mpl_finance (和情节),因为它们太慢了。相反,我编写了一个优化的金融绘图库,finplot ,我用它来回测多达 106 支蜡烛。
这是一个小例子:
import yfinance as yf
import finplot as fplt
df = yf.download('SPY',start='2018-01-01', end = '2020-04-29')
fplt.candlestick_ochl(df[['Open','Close','High','Low']])
fplt.plot(df.Close.rolling(50).mean())
fplt.plot(df.Close.rolling(200).mean())
fplt.show()
Examples included显示 SMA、EMA、布林带、累积/分布、Heikin Ashi、平衡量、RSI、TD 顺序、MACD、散点图指标、热图、直方图、实时更新图表和交互式测量;所有这些都具有可供使用的合理默认值。
关于python-3.x - 由于 matplotlib.finance 已被弃用,我该如何使用新的 mpl_finance 模块?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42373104/
如何将mpl_finance包安装到Anaconda上的环境路径中? 我尝试了 pip install mpl_finance 但我仍然在 Anaconda 上找不到该软件包,它去了哪里?我对 Pyt
我正在使用 DataFrame。我的数据用于烛台。问题是我无法删除周末日期。我的意思是,我的代码显示了这一点: enter image description here 我正在寻找这个: enter
收到此错误消息: MatplotlibDeprecationWarning:财务模块已在 mpl 2.0 中弃用,并将在 mpl 2.2 中删除。请改用模块 mpl_finance。 我该如何安装 m
我正在尝试导入 matplotlib.finance python中的模块,以便我可以制作烛台OCHL图。我的 matplotlib.pyplot版本是 2.00。我尝试使用以下命令导入它: impo
我是一名优秀的程序员,十分优秀!