fund_historical_data
Retrieve historical fund performance data for specific codes within a defined date range and interval using the FonParam MCP server. Supports sorting and filtering for detailed investment analysis.
Instructions
Fonun geçmiş değerlerini getirir
Input Schema
Name | Required | Description | Default |
---|---|---|---|
code | Yes | Fon kodu | |
end_date | No | Bitiş tarihi (YYYY-MM-DD) | |
interval | No | Veri aralığı | |
order | No | Sıralama yönü | |
sort | No | Sıralama alanı | |
start_date | No | Başlangıç tarihi (YYYY-MM-DD) |
Input Schema (JSON Schema)
{
"properties": {
"code": {
"description": "Fon kodu",
"type": "string"
},
"end_date": {
"description": "Bitiş tarihi (YYYY-MM-DD)",
"type": "string"
},
"interval": {
"description": "Veri aralığı",
"enum": [
"daily",
"weekly",
"monthly"
],
"type": "string"
},
"order": {
"description": "Sıralama yönü",
"enum": [
"ASC",
"DESC"
],
"type": "string"
},
"sort": {
"description": "Sıralama alanı",
"type": "string"
},
"start_date": {
"description": "Başlangıç tarihi (YYYY-MM-DD)",
"type": "string"
}
},
"required": [
"code"
],
"type": "object"
}