top of page

其他市場數據

get_basic_hk_stock_info

簡介︰香港所有股票的常用基本數據,例如PE、每手股數、市值、上市日期等

 

日期範圍︰僅上一個交易日

無需參數

返回格式︰DataFrame

DataFrame內容格式︰

例子︰

df = client.get_basic_hk_stock_info()

basic hk stock info.PNG
get_basic_hk_stock_info

get_hk_ipo_hist

簡介︰香港股票IPO歷史數據,例如上市日期、公開發售金額、國際配售金額等

日期範圍︰2010年1月 至今

更新時間︰逢交易日後上午7時

無需參數

返回格式︰DataFrame

DataFrame內容格式︰

例子︰

df = client.get_hk_ipo_hist()

hk ipo his.PNG

注意事項︰

​由於column眾多,全部顯示時通常需要換行,有需要時可自行選擇所需column

發行股數可能以科學記數法 (scientific notation,e+)表達

get_hk_ipo_hist

get_north_water

簡介︰滬深港通南向資金歷史數據,俗稱北水流向

日期範圍︰2014年11月 至今

更新時間︰逢交易日晚上10時

所需參數

返回格式︰DataFrame

DataFrame內容格式︰

例子︰

df = client.get_north_water(20180101, 20220127)

north water.PNG

注意事項︰

​由於column眾多,全部顯示時通常需要換行,有需要時可自行選擇所需column

get_north_water
get_hk_market_cap_hist_by_code

get_hk_market_cap_hist_by_code

簡介︰提供個股的市值歷史數據

日期範圍︰2010年1月 至今

所需參數

返回格式︰DataFrame

DataFrame內容格式︰

例子︰

df = client.get_hk_market_cap_hist_by_code('00005')

market cap hist by code.PNG

注意事項︰

​累積​市值定義為,當天所有港股市值從最高至最低排列,從最高市值開始累計至該股的總市值

get_hk_market_cap_hist_by_date

get_hk_market_cap_hist_by_date

簡介︰提供指定日期範圍內所有港股市值歷史數據

日期範圍︰2010年1月 至今

所需參數

返回格式︰DataFrame

DataFrame內容格式︰

例子︰

df = client.get_hk_market_cap_hist(20211230, 20220102)

hk hist market cap.PNG

注意事項︰

​累積​市值定義為,當天所有港股市值從最高至最低排列,從最高市值開始累計至該股的總市值

數據量較大,如需取得一年以上數據,等待時間可能超過一分鐘,建議若需要更長的歷史市值,可選擇分段取得

get_market_highlight

簡介︰提供香港主板大市歷史數據

所需參數

返回格式︰DataFrame

DataFrame內容格式︰

例子︰

df = client.get_market_highlight(20210101, 20220121)

market highligh.PNG
get_market_highlight
bottom of page