statistics
Generate and analyze daily statistics for investment funds in Turkey using the FonParam MCP server. Filter by date range, sort data, and paginate results for detailed insights.
Instructions
Günlük istatistikleri listeler
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| end_date | No | Bitiş tarihi (YYYY-MM-DD) | |
| limit | No | Sayfa başına kayıt sayısı | |
| order | No | Sıralama yönü | |
| page | No | Sayfa numarası | |
| sort | No | Sıralama alanı | |
| start_date | No | Başlangıç tarihi (YYYY-MM-DD) |
Input Schema (JSON Schema)
{
"properties": {
"end_date": {
"description": "Bitiş tarihi (YYYY-MM-DD)",
"type": "string"
},
"limit": {
"description": "Sayfa başına kayıt sayısı",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"order": {
"description": "Sıralama yönü",
"enum": [
"ASC",
"DESC"
],
"type": "string"
},
"page": {
"description": "Sayfa numarası",
"minimum": 1,
"type": "number"
},
"sort": {
"description": "Sıralama alanı",
"type": "string"
},
"start_date": {
"description": "Başlangıç tarihi (YYYY-MM-DD)",
"type": "string"
}
},
"type": "object"
}