Selling price in Italy

Hello everyone, I am asking to all Italian community.
I am looking for a site where to scrape the current selling prices (zonale orario and minimo garantito) to use them in the energy dashboard.
Could you help me?

Thank you :wink:

Buongiorno a tutti, mi rivolgo a tutti gli italiani sul forum, sto cercando un sito dove poter prendere i prezzi dell’energia (zonale orario e minimo garantito) per poterli usare nell’energy dashboard.
Potete aiutarmi?

Grazie :wink:

Hi.
I’m from Italy and I’m using integration for pun prices and hairs tariffs.

I have some problem regarding prices of power sell to load.
I think there a project to download data from Gme but I haven’t time to check.

I need help to use energy prices divide jn 3 hours zone (f1, f2, F3)

How have you managed the utility meter to use variable prices of three tariffs?

Thank you.

Ciao @Danros3 ,

sorry for the delay in reply but in these days I am very busy… :exploding_head:

I use an utility meter and an automation to do the tariff switch from F1, F2 and F3

To populate the utility meter I use the data from the smart meter of my fronius solar inverter, otherwise you can use a shelly energy meter with a clamp to measure the consumption of the house.

this is the automation I use:

alias: Energia - cambio fascia consumo
description: "cambia la tariffa in base all'orario"
trigger:
  - platform: time
    id: "7"
    at: "7:00:00"
    variables:
      tariff: f2
    alias: F2 inizio 7.00
  - platform: time
    id: "8"
    at: "8:00:00"
    variables:
      tariff: f1
    alias: F1 inizio 8.00
  - platform: time
    id: "19"
    at: "19:00:00"
    variables:
      tariff: f2
    alias: F2 inizio 19.00
  - platform: time
    id: "23"
    at: "23:00:00"
    variables:
      tariff: f3
    alias: F3 inizio 23.00
condition: []
action:
  - choose:
      - conditions:
          - condition: trigger
            id:
              - "7"
          - condition: time
            weekday:
              - mon
              - tue
              - wed
              - thu
              - fri
              - sat
        sequence:
          - service: select.select_option
            data:
              option: f2
            target:
              entity_id: select.casa_costo_energia_consumata
      - conditions:
          - condition: trigger
            id:
              - "8"
          - condition: time
            weekday:
              - mon
              - tue
              - wed
              - thu
              - fri
        sequence:
          - service: select.select_option
            data:
              option: f1
            target:
              entity_id: select.casa_costo_energia_consumata
      - conditions:
          - condition: trigger
            id:
              - "19"
          - condition: time
            weekday:
              - mon
              - tue
              - wed
              - thu
              - fri
        sequence:
          - service: select.select_option
            data:
              option: f2
            target:
              entity_id: select.casa_costo_energia_consumata
      - conditions:
          - condition: trigger
            id:
              - "23"
        sequence:
          - service: select.select_option
            data:
              option: f3
            target:
              entity_id: select.casa_costo_energia_consumata
mode: single

select.casa_costo_energia_consumata instead is an utility meter and it has 3 tariffs f1, f2 and f3

If can help you can follow this video (I used it to understand how everything works)

I did this thing an year ago so I am a little bit rusty about but feel free to ask :wink:

About the main topic, which integration you use to get the price for the energy sold?

grazie e ciao
Roberto

Grazie.

The automation to change tariffs isn’t useful for. me because of the integration…

With this you can have current price and also current tariffs…

I have some problem about energy manager…

First: I have power, and current price of energy. How can I calculate € at the end of the day?

Second: Sometimes I have abnormal consumption measurement which are really impossible (my car consumption yesterday had signed 600kwh, and also my pdc had 6500kwh Monday)

I think I made some mistake / errors on templates and sensor and utility meter.

Thank you