View source: R/market_notices.R
| aemo_market_notices | R Documentation |
Returns the MARKETNOTICEDATA feed from MMSDM. Market
notices are AEMO's free-text log of market-relevant events:
Lack of Reserve (LOR1/2/3) declarations, Reliability and
Emergency Reserve Trader (RERT) activations, market
suspensions, market directions, unit withdrawals, system
security events, administered price declarations, and
operator advisories.
aemo_market_notices(start, end, notice_type = NULL, region = NULL)
start, end |
Window (inclusive) applied to |
notice_type |
Optional character vector (e.g. |
region |
Optional NEM region code. |
Pair with aemo_constraints() and aemo_price() to sequence
the causal chain of a price event. Rangarajan, Svec, Foley
and Trück (2025, Energy Economics 141) use
MARKETNOTICEDATA to order the intervention messages that
mark entry to and exit from the June 2022 NEM suspension.
An aemo_tbl with columns from MARKETNOTICEDATA:
noticeid, effectivedate, typeid (notice category),
originator, priority, reason (the notice text),
externalreference, and where present regionid.
AEMO NEMweb MMSDM archive, MARKETNOTICEDATA table. AEMO Copyright Permissions Notice.
Other dispatch:
aemo_bids(),
aemo_constraints(),
aemo_dispatch_units(),
aemo_fcas_enablement(),
aemo_gencon(),
aemo_interconnector(),
aemo_outages(),
aemo_rooftop_pv(),
aemo_spd_constraints()
op <- options(aemo.cache_dir = tempdir())
try({
# LOR declarations during the June 2022 NEM suspension
n <- aemo_market_notices(
start = "2022-06-13",
end = "2022-06-14",
notice_type = "LOR"
)
head(n)
})
options(op)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.