| aemo_settlement | R Documentation |
Returns settlement reconciliation tables from MMSDM. Three views are exposed, corresponding to the three tables gentailer hedging workflows most commonly need:
aemo_settlement(table = c("cashflow", "fcas_recovery", "residues"), start, end)
table |
One of |
start, end |
Window (inclusive) applied to
|
"cashflow" (default): SETCFM (NEMDE-derived energy
settlement amounts per participant per trading interval).
"fcas_recovery": SETFCASREGIONRECOVERY (the recovery
allocation of FCAS costs to customer load per region per
trading interval).
"residues": SETRESIDUECONTRACTPAYMENT (settlement
residue auction (SRA) contract payments against
interconnector settlement residues).
Access. These tables are in the MMSDM monthly archive (not the NEMweb Current retention). Expect two-month latency between trading date and availability.
An aemo_tbl with the raw MMSDM columns for the
requested table.
AEMO NEMweb MMSDM archive, SETCFM / SETFCASREGIONRECOVERY / SETRESIDUECONTRACTPAYMENT. AEMO Copyright Permissions Notice.
aemo_mlf() for the transmission loss factors that
scale settlement amounts; aemo_interconnector() for the
flow side of the residue calculation.
Other reference:
aemo_dlf(),
aemo_interconnectors(),
aemo_mlf(),
aemo_participants(),
aemo_price_caps(),
aemo_regions(),
aemo_snapshot(),
aemo_units()
op <- options(aemo.cache_dir = tempdir())
try({
s <- aemo_settlement(table = "cashflow",
start = "2024-06-01",
end = "2024-06-02")
head(s)
})
options(op)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.