Belgium, flanders #37
Replies: 16 comments 48 replies
|
Thank you! |
|
I think the cost voor "bijdrage groene stroom & WKK" is missing? {% set s = { |
|
Does one of you know what price you actually get when you put electricity back on the net with a dynamic contract, i assume it would be something like this? current_price - s.distributiekosten - s.transportkosten |
|
I calculate the actually price at the chart. |
|
In the new release, VAT can be added as an config option. This means the template does not need the VAT anymore. |
|
@MrOzzOnline can you please adjust the template since the new release and maybe add one for 'Injectie prijs' |
|
I noticed the margin the supplier takes (only Engie at the moment) isn't included in the price template. According to their conditions: The 0,2040 is actually c€/kWh while the spot price is in €/MWh which is why they are multiplying it by 0,1 which is the result of /1000 (MWh to kWh) x 100 (€ to c€). This integration gets the price in €/kWh so the actual margin used is 0,002040 €/kWh. This is before tax so the general formula becomes: (spot price x margin) x VAT + costs. I changed the template in the first post. |
|
The way the additional costs are calculated has changed. New template in the first post. |
|
OK I changed it now too: I'm using nordpool for now because I don't have access to the API yet. See screenshot, tomorrow will be a expansive day? |
|
Allright, I did some more digging: You can find the full details of the distribution fees here: "Totaal kWh-tarief" mentioned at the Engie price sheet for distribution is actually: I'll update the first post. |
|
I have nordpool and the entso api running, but there is a big difference in price, any idea why? And yes, both have the right calculation (kwh-tarief, etc etc). Which one is the right oned to check for the Belgium energy prices? See screenshot: https://ibb.co/L09Mqzz |
|
How do you use new 'capaciteitstarief' in this template? As far as I know, it's replacing the distribution and transport kost. |
This is difficult because this a variable price according to your own energy use. |
|
Does anyone know, using the ENTSO-E integration, why I have for the tomorrow prices : N/A instead of the prices in the chart ? Thanks in advance ! Bart |










Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
New prices starting from 1/1/2023
The price for injection (= injectietarief) is without tax and costs. You can use the unmodified value.
{% set s = {
"bijz_accijns": 0.014416,
"energiebijdrage": 0.0020417,
"groenestroom_wkk": 0.02184,
"kwh_tarief": 0.0374193,
"VAT": 1.06,
"marge": 0.002040
} %}
{{((current_price + s.marge) * s.VAT + s.bijz_accijns + s.energiebijdrage + s.groenestroom_wkk + s.kwh_tarief) | float}}
Remarks:
Costs per region:

You can find these values on the cost sheets of your energy supplier (for example: https://www.engie.be/nl/energie/elektriciteit-gas/prijzen-voorwaarden/)
The distribution cost details can be found here:
https://www.vreg.be/nl/periodieke-nettarieven-elektriciteit-en-aardgas-2023
All reactions