问题标签 [mplfinance]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
python - 使用 Pandas 和 Matplotlib 绘制 Candlestick_OHLC 一分钟柱
给定以下 Pandas 数据框示例
如何绘制一分钟烛台 OHLC 柱,在 xaxis 上显示分钟时间范围?
我试过这个,但它不起作用
python-3.x - 由于 matplotlib.finance 已被弃用,我该如何使用新的 mpl_finance 模块?
我正在尝试matplotlib.finance
在 python 中导入模块,以便制作烛台 OCHL 图。我的matplotlib.pyplot
版本是 2.00。我尝试使用以下命令导入它:
我收到此错误:
warnings.warn(message, mplDeprecation, stacklevel=1) MatplotlibDeprecationWarning:财务模块已在 mpl 2.0 中弃用,将在 mpl 2.2 中删除。请改用 mpl_finance 模块。
然后,我尝试使用以下行,而不是在 python 中使用上述行:
我收到此错误:
ImportError:没有名为“mpl_finance”的模块
我应该怎么做才能从中导入烛台matplotlib.pyplot
?
python - 如何使用熊猫数据框绘制点和图形
我正在使用 Pandas 数据框来操纵由收盘价和时间组成的金融时间序列。我想在 Xs 和 Os 的 Point and Figure 图表中显示结果。但是,我在 Python 中找不到任何可视化包来执行此操作。
有没有人有使用 Python 绘制点和图图表的经验?
提前致谢。
python - ModuleNotFoundError:没有名为“mpl_finance”的模块
嗨,我正在关注使用 matplotlib.finance 来使用烛台.ohlc 的教程。在研究时,我发现该库已被弃用并使用 mlp_finance。我相信我已经通过运行命令提示符并输入 pip install mpl_finance 来安装它。我得到这个的结果
我尝试重新运行脚本,但仍然出现错误:
我检查了 python 库路径,但没有看到标有 mlp_finance 的文件夹(我不确定我是否应该这样做)。但我确实看到了一个标有 mpl_finance-0.10.0-py3.7.egg 的文件
对解决此问题有任何帮助吗?下载 git 包并运行命令提示符安装
运行命令行 pip install git clone https://github.com/matplotlib/mpl_finance.git mpl_finance.git
python - 如何将 mpl_finance 包安装到 Anaconda 的环境中?
如何将mpl_finance
软件包安装到 Anaconda 上的环境路径中?
我试过pip install mpl_finance
了,但我仍然无法在 Anaconda 上找到包裹,它去哪儿了?我对 Python 很陌生。
matplotlib - 在终端中下载 mplfinance 后,Matplotlib.finance 没有响应。错误:没有名为“matplotlib.finance”的模块
我正在尝试使用从 Stooq 提取的收盘股票数据在 jupyter notebook 中创建烛台 / OHLC 图。我尝试了几种不同的方法来尝试安装 mplfinance 以导入烛台_ohc,并且无论我尝试什么,都会不断收到不同的错误消息。以下是我尝试过的不同方法:
在终端中使用 Python 成功安装:'pip install https://github.com/matplotlib/mpl_finance/archive/master.zip '
这在终端中有效:'pip install mpl_finance'
1 当我尝试将其输入终端时:
我收到此错误消息:'来自:无法读取 /var/mail/mpl_finance'
是的,我也升级了 mplfinance。
2 我也尝试在 Jupyter Notebook 中下载这个:
并收到此错误消息:'No module named 'matplotlib.finance''
我的问题是,当我在终端中安装 matplotlib.finance 时,为什么会不断收到错误消息?我错过了什么或做错了什么?
python - 是否可以连接两个图表,一个用 matplotlib.pyplot 绘制,另一个用 mplfinance 绘制到同一个图中。例如; 相同的图像
我正在绘制两个图表。一个带有 matplotlib.pyplot 的条形图和另一个带有 mplfinance 的蜡烛图,我想在同一个图中显示它们彼此堆叠在一起(图像)。
我找到了如何使用 matplotlib.pyplot 堆叠绘图的示例,但似乎找不到任何如何将两个绘图库的输出连接到一个绘图中的示例。
这可能吗?如果可以,我该怎么做?
谢谢你的时间。