-
Notifications
You must be signed in to change notification settings - Fork 331
03. 汇率数据
PKUJohnson edited this page Dec 20, 2018
·
1 revision
OpenDataTools通过fx接口,支持对人民币汇率数据的获取,要求版本0.2.2以上。
数据来源:外汇交易中心
CNY :人民币 USD :美元 EUR :欧元 JPY :日元 HKD :港币 GBP :英镑
from opendatatools import fx
- 人民币汇率中间价历史数据
df,msg = fx.get_hist_cny_cpr()
- shibor历史数据
df, msg = fx.get_his_shibor()
- shibor实时数据
df = fx.get_realtime_shibor()
- 人民币汇率最新数据
df = fx.get_cny_spot_price()