UK Energy Trading
Dataset which will be instrumental to develop automated trading strategies.
@kaggle.kapilverma_uk_energy_trading
Dataset which will be instrumental to develop automated trading strategies.
@kaggle.kapilverma_uk_energy_trading
Context
In the Great Britain market, you can also trade without an asset such as a power plant, renewables or batteries. Therefore, it can be differentiated between physical trades – backed by an asset – and solely financial non-physical trades on the markets without actually providing or receiving energy.
This dataset can be used in building forecast models, optimisation models and in developing first trading strategies for both physical and non-physical energy trading.
A primer: Using this dataset, one can have a closer look into two auctions of the day-ahead electricity market in Great Britain and develop as well as backtest a trading strategy maximising profits between both auctions.
Content
CREATE TABLE auction_data (
"date_wet" VARCHAR -- Date (WET),
"price_first_auction" VARCHAR,
"price_second_auction" VARCHAR,
"traded_volume_first_auction" VARCHAR,
"traded_volume_second_auction" VARCHAR,
"price_forecast_first_auction" VARCHAR
);
CREATE TABLE forecast_inputs (
"date_wet" VARCHAR -- Date (WET),
"demand_plus_system_margin" VARCHAR,
"demand" VARCHAR,
"within_day_availability" VARCHAR,
"margin" VARCHAR,
"within_day_margin" VARCHAR,
"long_term_wind" VARCHAR,
"long_term_solar" VARCHAR,
"long_term_wind_over_demand" VARCHAR,
"long_term_wind_over_margin" VARCHAR,
"long_term_solar_over_demand" VARCHAR,
"long_term_solar_over_margin" VARCHAR,
"margin_over_demand" VARCHAR,
"snsp_forecast" VARCHAR,
"stack_price" VARCHAR,
"within_day_potential_stack_price" VARCHAR,
"previous_day_ahead_price" VARCHAR,
"previous_continuous_half_hour_vwap" VARCHAR,
"inertia_forecast" VARCHAR
);
CREATE TABLE system_prices (
"date_wet" VARCHAR -- Date (WET),
"forecast_system_price_low" VARCHAR,
"forecast_system_price_high" VARCHAR,
"system_price" VARCHAR
);
Anyone who has the link will be able to view this.