get_storage_operations
Analyze pumped storage operations to identify energy arbitrage opportunities and assess storage efficiency by tracking daily pumping consumption and turbining activities.
Instructions
Get pumped storage operations for a day.
Shows pumping consumption (storing energy) and turbining (releasing energy) to identify arbitrage opportunities and storage efficiency.
Args: date: Date in YYYY-MM-DD format
Returns: JSON string with storage operations and efficiency metrics.
Examples: Get storage operations for Oct 8: >>> await get_storage_operations("2025-10-08")
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | Yes |
Input Schema (JSON Schema)
{
"properties": {
"date": {
"type": "string"
}
},
"required": [
"date"
],
"type": "object"
}