sectorRelatedStocks
Find stocks related to specific industry sectors or concepts, with sorting options by market value, daily price changes, or relevance to help identify investment opportunities.
Instructions
板块相关个股:获取行业或概念板块所影响股票及关联理由,相关个股可根据个股涨跌幅、个股市值、概念相关度进行排序
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | 概念或行业板块名称 | |
sortBy | No | 枚举值:market_value/change_ratio/relevance。输出股票列表排序方式,按流通市值(market_value)或当天涨跌幅(change_ratio)或概念相关度(relevance)降序排序,不填默认按change_ratio倒序排。 | |
stockCnt | No | 最大返回条数,默认3条 |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "概念或行业板块名称",
"type": "string"
},
"sortBy": {
"description": "枚举值:market_value/change_ratio/relevance。输出股票列表排序方式,按流通市值(market_value)或当天涨跌幅(change_ratio)或概念相关度(relevance)降序排序,不填默认按change_ratio倒序排。",
"type": "string"
},
"stockCnt": {
"description": "最大返回条数,默认3条",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}