Skip to contents

Changes to bid availability for scheduled activation products. 100 documents limit applies; paging is handled transparently.

Usage

changes_to_bid_availability(
  eic = NULL,
  business_type = "C46",
  period_start = ymd(Sys.Date() - days(x = 7L), tz = "CET"),
  period_end = ymd(Sys.Date(), tz = "CET"),
  tidy_output = TRUE,
  security_token = Sys.getenv("ENTSOE_PAT")
)

Arguments

eic

Energy Identification Code of the domain

business_type

type of frequency restoration reserve "C40" Conditional bid "C41" Thermal limit "C42" Frequency limit "C43" Voltage limit "C44" Current limit "C45" Short-circuit current limits "C46" Dynamic stability limit Defaults to "C46".

period_start

POSIXct or YYYY-MM-DD HH:MM:SS format One year range limit applies

period_end

POSIXct or YYYY-MM-DD HH:MM:SS format One year range limit applies

tidy_output

Defaults to TRUE. flatten nested tables

security_token

Security token for ENTSO-E transparency platform

Value

A tibble::tibble() with the queried data.

Examples

if (FALSE) { # \dontrun{
df <- entsoeapi::changes_to_bid_availability(
  eic = "10YCZ-CEPS-----N",
  business_type = "C46",
  period_start = lubridate::ymd(x = "2024-01-01", tz = "CET"),
  period_end = lubridate::ymd(x = "2024-01-02", tz = "CET"),
  tidy_output = TRUE
)

dplyr::glimpse(df)
} # }