get_top_shareholders_by_sector
Identify the largest shareholders within a specific sector of the Spanish stock exchange to analyze ownership structures and investment patterns.
Instructions
Get top shareholders in a specific sector
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of results | |
sector | Yes | Sector name |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"description": "Maximum number of results",
"type": "number"
},
"sector": {
"description": "Sector name",
"type": "string"
}
},
"required": [
"sector"
],
"type": "object"
}