Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Marktprijs kan preciezer #80

Open
HiDiHo01 opened this issue May 24, 2023 · 1 comment
Open

Marktprijs kan preciezer #80

HiDiHo01 opened this issue May 24, 2023 · 1 comment

Comments

@HiDiHo01
Copy link
Contributor

HiDiHo01 commented May 24, 2023

De marktprijs heeft in de data 3 decimalen maar de 21% btw prijs heeft 7 decimalen

Je kunt dus de marktprijs preciezer krijgen met de volgende code
self.marketPrice = data['marketPriceTax'] / 0.21

Op zich ben ik er geen voorstander van om iets vast te zetten in de code (21%) maar als je bijvoorbeeld
0.115 als markprijs neemt en dan de btw uitrekent krijg je 0,02415 terwijl de data zegt 0,0240744

De echte marktprijs is dus 0,114640 €/kWh

Just my 3 cents

Dan klopt de prijsopbouw ook weer

Scheelt toch 0,018 op 1000 kWh :P

PS, prijs +tax en prijs +tax + markup moeten dan ook bijgewerkt worden

            tax_rate = 0.21  # Assuming a tax rate of 21%

            # Calculation of self.market_price_including_tax
            price_excluding_tax = data['marketPriceTax'] / tax_rate
            self.market_price_including_tax = price_excluding_tax * (1 + tax_rate)

            # Calculation of self.market_price_including_tax_and_markup
            markup_price = data['sourcingMarkupPrice']
            self.market_price_including_tax_and_markup = price_excluding_tax * (1 + (tax_rate + markup_price / price_excluding_tax))
@HiDiHo01
Copy link
Contributor Author

HiDiHo01 commented Jul 4, 2023

Nog iets.....de api data zegt ook dat de energiebelasting 0,152 €/kWh is
maar dit is 0,15239 €/kWh (bepaald door de overheid voor 2023)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant