# Get Industrial Chain By Plate

get_industrial_chain_by_plate(plate_id)

  • Description

    Get industrial chains associated with a plate, returning the list of industrial chains associated with the specified industrial plate (including type, market cap, and number of constituent stocks).

  • Parameters

    Parameter Type Description
    plate_id int Industrial plate ID (obtained from get_industrial_chain_detail node_list) (required)
  • Return

    Parameter Type Description
    ret RET_CODE API call result
    data list When ret == RET_OK, returns list data
    str When ret != RET_OK, returns error description
    • Data format:
      Field Type Description
      chain_id int Industrial chain ID
      chain_type str Industrial chain type ("CHAIN"/"PARALLEL"/"UP_MID_DOWN")
      name str Industrial chain name
      market_cap float Market cap
      stocks_num int Number of constituent stocks
      "CHAIN" Serial type
      "PARALLEL" Parallel type
      "UP_MID_DOWN" Upstream-midstream-downstream type
  • Example

from futu import *

quote_ctx = OpenQuoteContext(host='127.0.0.1', port=11111)

ret, data = quote_ctx.get_industrial_chain_by_plate(plate_id=10010508)
if ret == RET_OK:
    for chain in data:
        print(chain)
else:
    print('error:', data)

quote_ctx.close()
1
2
3
4
5
6
7
8
9
10
11
12
  • Output
{'chain_id': 9610020, 'chain_type': 'UP_MID_DOWN', 'name': 'AI', 'market_cap': 26949823045632.0, 'stocks_num': 329}
1

API Limits

  • Maximum 60 requests within 30 seconds
  • Only the first page of paginated requests counts towards rate limiting