generate_analyst_report
Generate comprehensive analyst reports on companies, sectors, or market themes with data visualizations for informed investment decisions on the Spanish stock exchange.
Instructions
Generate a comprehensive analyst report for a company, sector, or market theme
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include_charts | No | Whether to include data visualizations (text-based) | |
report_type | Yes | Type of report to generate | |
subject | Yes | Company symbol, sector name, or theme to analyze |
Input Schema (JSON Schema)
{
"properties": {
"include_charts": {
"default": true,
"description": "Whether to include data visualizations (text-based)",
"type": "boolean"
},
"report_type": {
"description": "Type of report to generate",
"enum": [
"company_deep_dive",
"sector_overview",
"governance_analysis",
"market_opportunity",
"risk_assessment"
],
"type": "string"
},
"subject": {
"description": "Company symbol, sector name, or theme to analyze",
"type": "string"
}
},
"required": [
"subject",
"report_type"
],
"type": "object"
}