Nord pool and tibber show same price?

Hello,
In the front end nordpool and tibber shows diffrent prices for spot, consistantly ca SEK 0.106
Easy fix i think would be to add that ammount as additional cost in Nord pool graph, this i cannot seem to accomplish due to reasons…

This is the card showing nordpool.

type: custom:apexcharts-card
graph_span: 24h
apex_config:
  chart:
    height: auto
show:
  last_updated: true
experimental:
  color_threshold: true
header:
  title: Nordpool Elpriser idag
  show: true
  show_states: true
  colorize_states: true
span:
  start: day
now:
  show: true
  label: Nu
series:
  - entity: sensor.nordpool_kwh_se3_sek_3_10_025
    show:
      extremas: true
      in_header: raw
      header_color_threshold: true
    type: column
    data_generator: |
      return entity.attributes.raw_today.map((start, index) => {
        return [new Date(start["start"]).getTime(), entity.attributes.raw_today[index]["value"]];
      });
    color_threshold:
      - value: 1
        color: darkgreen
        opacity: 1
      - value: 100
        color: goldenrod
      - value: 200
        color: darkred

This is my Nord pool settings in configuration.yaml

# nordpool:
  - platform: nordpool
    friendly_name: "SE3 Price"
    region: "SE3"
    VAT: True
    currency: "SEK"
    price_in_cents: False
    low_price_cutoff: 0.7
    precision: 3
    price_type: kWh
    additional_costs: "{{current_price + 10}}"

the additional_costs parameter changes nothing.

Any clues to how i can add 0.106 SEK to my nordpool graph?