BESTenergytrade / simply

Simulation of Electricity Markets in Python
MIT License
4 stars 1 forks source link

bids prices need to include VAT and other fees #155

Open j-ti opened 1 year ago

j-ti commented 1 year ago

VAT is relative to the price_rate (e.g. 19%) other than grid fees or further fees (e.g. electricity tax), which are fixed per kWh. (https://strom-report.de/strompreise/strompreis-zusammensetzung/) Thus VAT cannot be fully represented by manipulating the current fee matrix.

bid_price = (1+VAT) (energy_price + grid_fee + electr_tax + other_fees) e.g. = 1,19 (ask_price + grid_fee + 2,89+2,05)

j-ti commented 1 year ago

@FC4R do we want to consider the VAT for evaluation of the strategies?