ERCOT Offer and Bid Curve Data
The raw offer curve data
SELECT
interval_end_local as hour_end,
settlement_point_name,
qse,
energy_only_offer_curve
FROM
ercot_dam_energy_only_offers_60_day
WHERE
settlement_point_name = 'HB_NORTH'
AND
interval_start_local::DATE = '2024-12-01'
ORDER BY
hour_end ASC;

Reorganizing to columns to look like ERCOT source data

Reformatting each point on offer curve as a row

Build an offer curve of a specific interval

Last updated
Was this helpful?

