get_top_performers
Identify top-performing stocks in the Spanish IBEX 35 index over a specified time period to support investment analysis and decision-making.
Instructions
Get top performing stocks over a specified period
Input Schema
Name | Required | Description | Default |
---|---|---|---|
days | No | Period in days | |
limit | No | Maximum number of results |
Input Schema (JSON Schema)
{
"properties": {
"days": {
"default": 7,
"description": "Period in days",
"type": "number"
},
"limit": {
"default": 10,
"description": "Maximum number of results",
"type": "number"
}
},
"type": "object"
}