stkResearch
Retrieve broker research reports and analyst opinions for specific stocks to inform investment decisions and market analysis.
Instructions
公司研究观点:获取各券商对于个股(即:上市公司)的研究观点
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endDate | No | 结束时间,不填则默认为今天 | |
maxCnt | No | 最大返回条数,默认3条 | |
query | Yes | 股票代码、股票名称、股票别名 | |
startDate | No | 开始时间,不填则默认为今天 |
Input Schema (JSON Schema)
{
"properties": {
"endDate": {
"description": "结束时间,不填则默认为今天",
"type": "string"
},
"maxCnt": {
"description": "最大返回条数,默认3条",
"type": "string"
},
"query": {
"description": "股票代码、股票名称、股票别名",
"type": "string"
},
"startDate": {
"description": "开始时间,不填则默认为今天",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}