get_forecast_report
Fetch performance forecast reports for a specific A-share stock within a defined date range. Retrieve data in a markdown table format, aiding in analysis of company performance projections.
Instructions
Fetches performance forecast reports (业绩预告) for a stock within a date range.
Note: Companies are not required to publish these except in specific cases.
Args:
code: The stock code (e.g., 'sh.600000').
start_date: Start date (for report publication/update) in 'YYYY-MM-DD' format.
end_date: End date (for report publication/update) in 'YYYY-MM-DD' format.
Returns:
Markdown table with performance forecast report data or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
code | Yes | ||
end_date | Yes | ||
start_date | Yes |
Input Schema (JSON Schema)
{
"properties": {
"code": {
"title": "Code",
"type": "string"
},
"end_date": {
"title": "End Date",
"type": "string"
},
"start_date": {
"title": "Start Date",
"type": "string"
}
},
"required": [
"code",
"start_date",
"end_date"
],
"title": "get_forecast_reportArguments",
"type": "object"
}