Get Allocation of Cross-Zonal Balancing Capacity (GL EB 12.3.H&I)
Source:R/en_balancing.R
allocation_of_cross_zonal_balancing_cap.RdUse of allocated cross-zonal balancing capacity between an acquiring and a connecting domain.
Usage
allocation_of_cross_zonal_balancing_cap(
eic_acquiring = NULL,
eic_connecting = NULL,
market_agreement_type = NULL,
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_acquiring
Energy Identification Code of the acquiring domain
- eic_connecting
Energy Identification Code of the connecting domain
- market_agreement_type
Optional market agreement type code "A01" Daily "A02" Weekly "A06" Long term
- period_start
POSIXct or YYYY-MM-DD HH:MM:SS format
- period_end
POSIXct or YYYY-MM-DD HH:MM:SS format
- 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.
See also
Other balancing endpoints:
activated_balancing_prices(),
aggregated_balancing_energy_bids(),
balancing_border_cap_limit(),
balancing_energy_bids(),
changes_to_bid_availability(),
contracted_reserves(),
current_balancing_state(),
elastic_demands(),
exchanged_volumes(),
exchanged_volumes_per_border(),
fcr_total_capacity(),
financial_expenses_and_income(),
hvdc_link_constrains(),
imbalance_prices(),
imbalance_volumes(),
netted_volumes(),
netted_volumes_per_border(),
procured_balancing_capacity(),
rr_and_frr_actual_capacity(),
shares_of_fcr_capacity(),
sharing_of_rr_and_frr_capacity()
Examples
if (FALSE) { # \dontrun{
df <- entsoeapi::allocation_of_cross_zonal_balancing_cap(
eic_acquiring = "10YAT-APG------L",
eic_connecting = "10YCH-SWISSGRIDZ",
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)
} # }