mampfes / ha_epex_spot

Adds EPEX Spot data to Home Assistant.
MIT License
116 stars 20 forks source link

Not seeing TOMORROW's data ?! #134

Open iz3man opened 3 weeks ago

iz3man commented 3 weeks ago

Any idea what could go wrong, as I'm not seeing tomorrow's data. I'm pretty sure it once was available. Can't really say what changed. Data source is smartenergy.at

image

And this is the apex card's code (basically from the docs with some slight changes):

type: custom:apexcharts-card
experimental:
  color_threshold: true
header:
  show: true
  title: ct/kWh
graph_span: 32h
apex_config:
  legend:
    show: false
span:
  start: day
now:
  show: true
  label: Now
yaxis:
  - min: -15
    max: 40
    decimals: 0
    apex_config:
      tickAmount: 4
series:
  - entity: sensor.epex_spot_data_net_price
    name: Strompreis ct/kWh
    type: line
    show:
      extremas: true
    unit: ct/kWh
    data_generator: >
      return entity.attributes.data.map((entry, index) => { return [new
      Date(entry.start_time).getTime(), entry.price_ct_per_kwh]; });
    color_threshold:
      - value: 40
        color: '#ff0000'
      - value: 30
        color: '#facb23'
      - value: 20
        color: '#ffff00'
      - value: 0
        color: '#00ff00'
  - entity: sensor.epex_spot_data_price
    name: Strompreis ct/kWh
    type: column
    extend_to: end
    show:
      extremas: true
    unit: ct/kWh
    data_generator: >
      return entity.attributes.data.map((entry, index) => { return [new
      Date(entry.start_time).getTime(), entry.price_ct_per_kwh]; });
    color_threshold:
      - value: 20
        color: '#ff0000'
      - value: 15
        color: '#facb23'
      - value: 8
        color: '#ffff00'
      - value: 0
        color: '#00ff00'
dodgydd commented 3 weeks ago

The GB feed also not working, I suspect it's to do with EPEX recent downtime and they came back up with a slightly different URL

scirocco-berlin commented 1 week ago

After deactivation EPEXSpot integration (DE-LU) cannot be reactivated. Error message says:

image

aquist-new commented 1 week ago

Same 403 for NL market. Screenshot 2024-07-02 at 13 29 00

mampfes commented 1 week ago

Did you already update to the latest release 2.3.8?

aquist-new commented 6 days ago

Thanks. I just updated from 2.3.2 -> 2.3.8, and everything works again. Sorry for the confusion.