Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
@tvanlaerhoven/epex-client
Advanced tools
The Epex Client package provides access to the latest European Power Exchange (EPEX) market data across all areas. It is intended primarily for hobbyist solutions.
The European Power Exchange (EPEX SPOT) is a market platform for the trading of electricity in Europe. It provides a marketplace for electricity producers, consumers, and traders to buy and sell electricity, aiming to create a transparent and efficient market for power trading.
The Epex Client package gives you access to the EPEX Spot Day-Ahead Market, where the electricity price and volume for each hour of the next day is established. You can work with these Day-Ahead prices by adjusting your electricity consumption patterns based on the price fluctuations. Here's how:
npm i @tvanlaerhoven/epex-client
or
yarn add @tvanlaerhoven/epex-client
First create an Epex client, with optional configuration.
The debug
property allows for extra logging during usage of the client.
import * as Epex from '@tvanlaerhoven/epex-client';
const client = new Epex.Client({ debug: true });
The day-ahead market data contains the established electricity prices and quantities for a selected region,
based on supply and demand. As an example. the data for MarketArea.Belgium
can be requested as follows:
try {
// Get today's hourly market data
const data = await client.getDayAheadMarketData(Epex.MarketArea.Belgium, Epex.today());
console.log(`Today's electricity price from 9h-10h is €${data.entries[9].price}`);
} catch(error) {
console.error(error.message);
}
The requested delivery date is passed as a string "YYY-MM-DD"
, or using the convenient methods Epex.today()
and
Epex.tomorrow()
.
Note that prices for the next day are typically available in the early afternoon on the day before delivery.
Most European countries are part of the SDAC (Single Day-Ahead Coupling) pan-European market coupling initiative, which allows cross-border electricity trading and price convergence. Since Brexit, Great Britain has its own market, and also Switzerland as a non-EU country is not part of the SDAC initiative. For both regions it is necessary to pass the auction name when requesting Day-Ahead prices:
const gbData = await client.getDayAheadMarketData(
Epex.MarketArea.GreatBritain,
Epex.tomorrow(),
Epex.today(),
DayAheadAuction.GB_DAA1
);
const chData = await client.getDayAheadMarketData(
Epex.MarketArea.Switzerland,
Epex.tomorrow(),
Epex.today(),
DayAheadAuction.CH
);
The Epex website does not allow browser requests from any other location than its own host (CORS). To solve this, run a local proxy server that drops any CORS headers from the http request.
import * as Epex from '@tvanlaerhoven/epex-client';
const client = new Epex.Client({ proxyServer: 'http://localhost:8088', debug: true });
The example demonstrates this. Try it by running:
npm run example
The output is a page where you can choose to either visualize today's market prices in table or as a bar graph.
FAQs
Collect European Power Exchange (EPEX) market data
We found that @tvanlaerhoven/epex-client demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.