-
Notifications
You must be signed in to change notification settings - Fork 331
10. 南华商品指数数据
PKUJohnson edited this page Aug 3, 2018
·
1 revision
OpenDataTools通过nhindex接口,支持南华商品指数数据的获取,要求版本0.6.1以上。
数据来源:南华期货(http://www.nanhua.net/subpage/research/nawaaindex/index-intro.html)
from opendatatools import nhindex
- 获取南华商品期货指数列表
df, msg = nhindex.get_index_list()
df.head(20)
- 获取南华商品期货指数最新价格
df, msg = nhindex.get_index_snapshot()
df
- 获取南华商品期货指数日线
df, msg = nhindex.get_index_daily('NHCI')
df.tail(20)
- 获取南华指数权重信息
df, msg = nhindex.get_index_weight()
df.head(20)