get_daily_demand_statistics
Retrieve daily electricity demand statistics including maximum, minimum, and total generation for any specified date range. Input start and end dates in YYYY-MM-DD.
Instructions
Get daily demand statistics for a period.
Provides comprehensive daily demand analysis including maximum, minimum, and sum of generation values for each day in the specified period.
Args: start_date: Start date in YYYY-MM-DD format end_date: End date in YYYY-MM-DD format
Returns: JSON string with daily statistics and overall summary.
Examples: Get statistics for a week: >>> await get_daily_demand_statistics("2025-10-01", "2025-10-07")
Get statistics for a month:
>>> await get_daily_demand_statistics("2025-10-01", "2025-10-31")Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| start_date | Yes | ||
| end_date | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |