get_top_mutual_funds
Identify leading mutual funds within a specified sector using structured inputs. Ideal for investors and analysts seeking sector-specific fund insights.
Instructions
Retrieve the top mutual funds in a specific sector.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sector | Yes | The sector to get |
Input Schema (JSON Schema)
{
"properties": {
"sector": {
"description": "The sector to get",
"enum": [
"basic-materials",
"communication-services",
"consumer-cyclical",
"consumer-defensive",
"energy",
"financial-services",
"healthcare",
"industrials",
"real-estate",
"technology",
"utilities"
],
"title": "Sector",
"type": "string"
}
},
"required": [
"sector"
],
"title": "get_top_mutual_fundsArguments",
"type": "object"
}