You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By using the below example code we get a NoMatchingDataError in all the functions (query_imbalance_prices, query_contracted_reserve_amount, query_contracted_reserve_prices)
If we change the Country code to ‘FR’ (France), then function query_imbalance_prices is working properly, the other functions are not.
Please let us know if there is an issue with country Greece and how we can overcome this issue
from entsoe import EntsoePandasClient
import pandas as pd
By using the below example code we get a NoMatchingDataError in all the functions (query_imbalance_prices, query_contracted_reserve_amount, query_contracted_reserve_prices)
If we change the Country code to ‘FR’ (France), then function query_imbalance_prices is working properly, the other functions are not.
Please let us know if there is an issue with country Greece and how we can overcome this issue
from entsoe import EntsoePandasClient
import pandas as pd
client = EntsoePandasClient(api_key=XXX)
Countries = 'GR'
Timezones = 'Europe/Athens'
start_Time = '20240101'
end_Time = '20240102'
type_marketagreement_type = 'A13'
process_type = 'A61'
client.query_imbalance_prices(Countries, start=pd.Timestamp(start_Time, tz=Timezones), end=pd.Timestamp(end_Time, tz=Timezones), psr_type=None)
client.query_contracted_reserve_amount(Countries, type_marketagreement_type, start=pd.Timestamp(start_Time, tz=Timezones), end=pd.Timestamp(end_Time, tz=Timezones), psr_type=None)
client.query_contracted_reserve_prices(Countries, type_marketagreement_type, start=pd.Timestamp(start_Time, tz=Timezones), end=pd.Timestamp(end_Time, tz=Timezones), psr_type=None)
The text was updated successfully, but these errors were encountered: