get_price_analysis
Analyze electricity spot market prices over time with statistics and multi-country comparisons to track price trends and market patterns.
Instructions
Get electricity price analysis over time.
Analyzes SPOT market prices with statistics and multi-country comparison.
Args: start_date: Start datetime in ISO format (YYYY-MM-DDTHH:MM) end_date: End datetime in ISO format (YYYY-MM-DDTHH:MM)
Returns: JSON string with price data and analysis.
Examples: Get hourly prices for a day: >>> await get_price_analysis("2025-10-08T00:00", "2025-10-08T23:59")
Get prices for a week:
>>> await get_price_analysis("2025-10-01T00:00", "2025-10-07T23:59")
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_date | Yes | ||
start_date | Yes |
Input Schema (JSON Schema)
{
"properties": {
"end_date": {
"type": "string"
},
"start_date": {
"type": "string"
}
},
"required": [
"start_date",
"end_date"
],
"type": "object"
}