screen_opportunities
Identify investment opportunities in the Spanish stock market by filtering stocks based on criteria like P/E ratio, market cap, sectors, and governance quality.
Instructions
Screen for investment opportunities based on specific criteria (value, growth, dividend, ESG, etc.)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of opportunities to return | |
screening_criteria | Yes |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"description": "Maximum number of opportunities to return",
"type": "number"
},
"screening_criteria": {
"properties": {
"exclude_sectors": {
"description": "Sectors to exclude",
"items": {
"type": "string"
},
"type": "array"
},
"governance_quality": {
"default": "any",
"description": "Required governance quality level",
"enum": [
"high",
"medium",
"low",
"any"
],
"type": "string"
},
"market_cap_max": {
"description": "Maximum market capitalization",
"type": "number"
},
"market_cap_min": {
"description": "Minimum market capitalization",
"type": "number"
},
"pe_ratio_max": {
"description": "Maximum P/E ratio",
"type": "number"
},
"pe_ratio_min": {
"description": "Minimum P/E ratio",
"type": "number"
},
"performance_period": {
"default": 30,
"description": "Days to look back for performance metrics",
"type": "number"
},
"sectors": {
"description": "Specific sectors to include",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}
},
"required": [
"screening_criteria"
],
"type": "object"
}