HKFDB 說明文檔
Python Financial Data Package
成份股數據
-
get_hk_index_const
- 香港指數成份股 -
- 標普500指數成份股
-
get_hk_stock_plate_const
- 香港股票板塊股份 -
get_all_hk_index_name
- 香港指數名稱 -
get_all_hk_stock_plate_name
- 香港股票板塊名稱
get_hk_index_const
簡介︰提供香港指數成份股名單
所需參數
返回格式︰DataFrame
DataFrame內容格式︰
例子︰
df = client.get_hk_index_const('hang_seng_index')
注意事項︰
指數名稱清單請參考 get_all_hk_index_name
get_spx_index_const
簡介︰提供標普500指數成份股名單
返回格式︰DataFrame
DataFrame內容格式︰
例子︰
df = client.get_spx_index_const()
例子2︰
df = client.get_spx_index_const(hist=True)
get_hk_stock_plate_const
簡介︰提供香港板塊股份名單
所需參數
返回格式︰DataFrame
DataFrame內容格式︰
例子︰
df = client.get_hk_stock_plate_const('光伏太陽能股')
注意事項︰
板塊名稱清單請參考 get_all_hk_stock_plate_name
get_all_hk_index_name
簡介︰提供香港指數名稱,可供get_hk_index_const使用
無需參數
返回格式︰list of string
例子︰
name_list = client.get_all_hk_index_name()
get_all_hk_stock_plate_name
簡介︰提供香港板塊名稱,可供get_hk_stock_plate_const使用
無需參數
返回格式︰list of string
例子︰
name_list = client.get_all_hk_index_name()