Fetches EU Allowance (EUA) primary-auction settlement prices from
the EEX public auction report. Auctions are held several times per
week; each year's file accumulates all auctions for that year.
Usage
co2_euets_price(from = NULL, to = NULL, year = NULL, refresh = FALSE)
Arguments
- from, to
Optional character or Date. Date range.
- year
Optional integer year. If supplied, only the file for
that year is fetched (faster than from/to).
- refresh
Re-download? Default FALSE.
Value
A data frame with date, auction_name, contract,
status, price_eur, min_bid_eur, max_bid_eur, volume_t.
Examples
# \donttest{
op <- options(carbondata.cache_dir = tempdir())
prices <- co2_euets_price(year = 2025)
#> ℹ Downloading EEX EUA auction report for 2025...
options(op)
# }