# Nordpool Fi

> Hourly electricity prices for Finland with optimal EV charging window calculation (3h, 4h, 5h).

- Skill: `ovaris/nordpool-fi` (Agent Skill, multi-file: 3 files)
- Install (CLI): `npx skillmds@latest add ovaris/nordpool-fi`
- Raw SKILL.md: https://api.skillmd.com/api/skills/ovaris/nordpool-fi/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: ovaris (https://skillmd.com/u/ovaris)
- Updated: 2026-09-10
- Page: https://skillmd.com/skills/ovaris/nordpool-fi

---


# Nordpool Finland Energy Prices 🇫🇮

Hourly electricity prices for Finland with optimal EV charging window calculation (3h, 4h, 5h).

This skill fetches hourly electricity prices for Finland using the Porssisahko.net API. It converts timestamps using the real `Europe/Helsinki` timezone, so Finnish summer/winter time shifts are handled correctly.

## Tools

### nordpool-fi

Fetch current prices, daily stats, and optimal charging windows.

**Usage:**
`public-skills/nordpool-fi/bin/nordpool-fi.py`

**Output Format (JSON):**
- `timezone`: Always `Europe/Helsinki`
- `unit`: Always `c/kWh`
- `current_price`: Current 15 min interval price (`c/kWh`)
- `current_hour_avg`: Current hour average (`c/kWh`)
- `best_charging_windows`: Optimal consecutive hours (3h, 4h, 5h) for charging
- `today_stats`: Daily average, min, and max prices, all in `c/kWh`

## Examples

Get optimal 4h window:
```bash
public-skills/nordpool-fi/bin/nordpool-fi.py | jq '.best_charging_windows["4h"]'
```

