-
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 4 replies
-
First of all, we no longer recommend to use the Entso-E API key. We have experienced a bit of outages on the API, so we have set up an intermediary server that fetches data from Entso-E - and have some other alternatives as backup. To fetch price data from our intermediate server, just leave the API key empty.
Not sure that I understand the question, but the price is fetched from Entso-E in EUR, then calculated to the selected currency (in your case DKK, I assume) by using the exchange rate published for the same date on https://www.norges-bank.no/tema/Statistikk/Valutakurser/?tab=api
Sorry, but I don't understand the question. Can you elaborate? |
Beta Was this translation helpful? Give feedback.
-
I think I just had the same problem as you. As far as I could test, it seems that price calculations are skipped if end date is befor start date (in a calender). You have (as I did, lives en .dk), some prices that runs from 1. oct to 31. mar, and as far as I can see/test, these entrys gets skipped/ignored. To solve it, I had to split it into: 1. oct to 31. dec, and another/new from 1. jan to 31. mar. So there is some logic that fails (IMHO). The calculations need to do something like “if end-date<start-date then end-date += 1year”, before comparing to current date. Greetings from DK. P.S. my test for “correct” prices, was done by comparing with elspotpris.dk , works great for .dk |
Beta Was this translation helpful? Give feedback.
-
Created issue #886 (not sure how to reference it correctly ?) |
Beta Was this translation helpful? Give feedback.
I think I just had the same problem as you.
As far as I could test, it seems that price calculations are skipped if end date is befor start date (in a calender).
You have (as I did, lives en .dk), some prices that runs from 1. oct to 31. mar, and as far as I can see/test, these entrys gets skipped/ignored.
To solve it, I had to split it into: 1. oct to 31. dec, and another/new from 1. jan to 31. mar.
So there is some logic that fails (IMHO). The calculations need to do something like “if end-date<start-date then end-date += 1year”, before comparing to current date.
Greetings from DK.
P.S. my test for “correct” prices, was done by comparing with elspotpris.dk , works great for .dk