简体   繁体   English

无法使用 mplfinance 绘制 plot 蜡烛图

[英]Not able to plot candle charts using mplfinance

I am trying to import the following file and plot a candle chart我正在尝试导入以下文件和 plot 蜡烛图

The following is stored in 1.txt:以下内容存储在 1.txt 中:

Date, Open, High, Low, Close, Volume
1589792400000, 9591.57, 9541.34, 9616.43, 9579.11, 4416.357582
1589796000000, 9579.1, 9566.96, 9666.66, 9628.39, 3873.626636
1589799600000, 9629.24, 9625.0, 9714.95, 9634.89, 3042.221677
1589803200000, 9634.89, 9565.1, 9670.0, 9665.0, 3245.471332
1589806800000, 9665.0, 9638.64, 9694.04, 9661.96, 2886.476716
1589810400000, 9661.97, 9631.82, 9735.0, 9708.56, 3105.444884
1589814000000, 9708.5, 9639.74, 9723.0, 9670.96, 2663.862566
1589817600000, 9670.97, 9608.2, 9710.0, 9648.3, 2175.585011

This is my code:这是我的代码:

df=pd.read_csv(1.txt,index_col=0,parse_dates=True)
df.index=(pd.to_datetime(df.index,unit='ms'))
mplfinance.plot(df,type='candle')

This is how the dataframe looks like ie df这就是 dataframe 的样子,即 df

                       Open     High      Low    Close       Volume
Date                                                                
2020-05-18 09:00:00  9591.57  9541.34  9616.43  9579.11  4416.357582
2020-05-18 10:00:00  9579.10  9566.96  9666.66  9628.39  3873.626636
2020-05-18 11:00:00  9629.24  9625.00  9714.95  9634.89  3042.221677
2020-05-18 12:00:00  9634.89  9565.10  9670.00  9665.00  3245.471332
2020-05-18 13:00:00  9665.00  9638.64  9694.04  9661.96  2886.476716
2020-05-18 14:00:00  9661.97  9631.82  9735.00  9708.56  3105.444884
2020-05-18 15:00:00  9708.50  9639.74  9723.00  9670.96  2663.862566
2020-05-18 16:00:00  9670.97  9608.20  9710.00  9648.30  2175.585011

I am getting the following error:我收到以下错误:

Traceback (most recent call last):
  File "C:\Users\bilal\AppData\Local\Programs\Python\Python37\lib\site-packages\pandas\core\indexes\base.py", line 2646, in get_loc
    return self._engine.get_loc(key)
  File "pandas\_libs\index.pyx", line 111, in pandas._libs.index.IndexEngine.get_loc
  File "pandas\_libs\index.pyx", line 138, in pandas._libs.index.IndexEngine.get_loc
  File "pandas\_libs\hashtable_class_helper.pxi", line 1619, in pandas._libs.hashtable.PyObjectHashTable.get_item
  File "pandas\_libs\hashtable_class_helper.pxi", line 1627, in pandas._libs.hashtable.PyObjectHashTable.get_item
KeyError: 'Open'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "<pyshell#38>", line 1, in <module>
    mplfinance.plot(df,type='candle')
  File "C:\Users\bilal\AppData\Local\Programs\Python\Python37\lib\site-packages\mplfinance\plotting.py", line 46, in decorator
    return func(*args, **kwargs)
  File "C:\Users\bilal\AppData\Local\Programs\Python\Python37\lib\site-packages\mplfinance\plotting.py", line 205, in plot
    dates,opens,highs,lows,closes,volumes = _check_and_prepare_data(data, config)
  File "C:\Users\bilal\AppData\Local\Programs\Python\Python37\lib\site-packages\mplfinance\_arg_validators.py", line 33, in _check_and_prepare_data
    opens   = data[o].values
  File "C:\Users\bilal\AppData\Local\Programs\Python\Python37\lib\site-packages\pandas\core\frame.py", line 2800, in __getitem__
    indexer = self.columns.get_loc(key)
  File "C:\Users\bilal\AppData\Local\Programs\Python\Python37\lib\site-packages\pandas\core\indexes\base.py", line 2648, in get_loc
    return self._engine.get_loc(self._maybe_cast_indexer(key))
  File "pandas\_libs\index.pyx", line 111, in pandas._libs.index.IndexEngine.get_loc
  File "pandas\_libs\index.pyx", line 138, in pandas._libs.index.IndexEngine.get_loc
  File "pandas\_libs\hashtable_class_helper.pxi", line 1619, in pandas._libs.hashtable.PyObjectHashTable.get_item
  File "pandas\_libs\hashtable_class_helper.pxi", line 1627, in pandas._libs.hashtable.PyObjectHashTable.get_item
KeyError: 'Open'

Appreciate your help.感谢你的帮助。

One minor change will fix this:一项小改动将解决此问题:

df=pd.read_csv('1.txt',index_col=0,parse_dates=True,skipinitialspace=True) 
#                                                   ^^^^^^^^^^^^^^^^^^^^^

This keyword argument exists because CSV files may or may not have spaces after each entry.存在此关键字参数是因为 CSV 文件在每个条目之后可能有也可能没有空格。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何使用 mplfinance 在 plot 中的其他行上方显示蜡烛? - How to display the candle above the other lines in plot using mplfinance? 如何使用 mplfinance.plot() 或任何类似的 package 在每根蜡烛上方添加字符串注释? - How to add a string comment above every single candle using mplfinance.plot() or any similar package? 如何使用 flask 将 mplfinance 蜡烛图发送到前端? - How to send mplfinance candle stick chart to frontend using flask? 当使用外部轴方法使用 mplfinance 库对 plot 多个烛台图表进行处理时,如何在烛台图表内处理 plot 成交量? - When using external axes method to plot multiple candlestick charts using mplfinance library, how to plot volume inside the candlestick chart? mplfinance:plot 不使用“ohlc”的线路 DataFrame? - mplfinance: plot a line without using an "ohlc" DataFrame? 自定义mplfinance plot python - Customize mplfinance plot python 隐藏(或不显示)mplfinance 中的 plot - Hide (or not show) the plot in mplfinance 如何绘制外部 mplfinance plot? - how to draw outside mplfinance plot? 如何使用 mplfinance 烛台_ohlc 在 matplotlib 中绘制带有日期时间的 ohlc 烛台? - How to plot ohlc candlestick with datetime in matplotlib using mplfinance candlestick_ohlc? 用mpf.plot mplfinance打印两点 - Print two points with mpf.plot mplfinance
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM