# 搜索資訊

get_search_news(keyword, max_count=10, news_sub_type=NewsSubType.ALL)

  • 介紹

    按關鍵詞搜索資訊,返回匹配的新聞、公告、評級等資訊列表。

  • 參數

    參數 類型 說明
    keyword str 搜索詞
    max_count int 本次請求的最大返回條數
    news_sub_type NewsSubType 資訊子類型
  • 返回

    參數 類型 說明
    ret RET_CODE 接口調用結果
    data pd.DataFrame 當 ret == RET_OK,返回搜索資訊列表
    str 當 ret != RET_OK,返回錯誤描述
    • DataFrame 欄位說明:

      欄位 類型 說明
      title str 標題
      news_sub_type NewsSubType 資訊子類型
      source str 來源
      publish_time str 發佈時間
      view_count int 瀏覽量
      related_securities list 關聯標的列表
      url str 詳情頁鏈接
  • Example

from moomoo import *
quote_ctx = OpenQuoteContext(host='127.0.0.1', port=11111)
ret, data = quote_ctx.get_search_news('space', 10, news_sub_type=NewsSubType.ALL)
if ret == RET_OK:
    print(data)
else:
    print('error:', data)
quote_ctx.close() # 結束後記得關閉當條連接,防止連接條數用盡
1
2
3
4
5
6
7
8
  • Output
                                               title news_sub_type       source publish_time  view_count related_securities                                                url
0                         Space:202612月期 第一財季業績說明材料          NEWS        日本交易所         5/13         329                 []           https://news.futunn.com/notice/307288728
1               Space:202612月期 第一財季業績簡報[日本會計準則](合併)          NEWS        日本交易所         5/13         277                 []           https://news.futunn.com/notice/307288725
2           SPACE CO., LTD. 第一季度盈利表現強勁,但全年利潤和股息預期下調。          NEWS     TipRanks         5/13         201                 []  https://news.futunn.com/post/73007255?futusour...
3               New Street Research 開始覆蓋太空經濟和基礎設施領域。          NEWS  PR Newswire         5/14        6035                 []  https://news.futunn.com/post/73047684?futusour...
4                                        Space:臨時報告書          NEWS        日本金融廳         3/27         257                 []           https://news.futunn.com/notice/306761904
5                    Gemini Space Station | 8-K:重大事件        NOTICE      美股SEC公告         6/16         278          [US.GEMI]  https://news.futunn.com/notice/307532371?futus...
6  Extra Space Storage | 4:持股變動聲明-高管 McNeal Gwyn ...        NOTICE      美股SEC公告         6/13         348           [US.EXR]  https://news.futunn.com/notice/307521769?futus...
7        Space Exploration Technologies Corp:承保或代理協議        NOTICE        SEDAR         6/12         400                 []  https://news.futunn.com/notice/307519369?futus...
8  Space Exploration Technologies Corp:補充長期形式的預備招...        NOTICE        SEDAR         6/12         231                 []  https://news.futunn.com/notice/307519371?futus...
9  Space Exploration Technologies Corp:補充長期形式的預備招...        NOTICE        SEDAR         6/12         210                 []  https://news.futunn.com/notice/307519370?futus...
1
2
3
4
5
6
7
8
9
10
11

接口限制

  • 每 30 秒內最多請求 10 次搜索資訊接口。