If I extract the data from 2021/01/01 to 2024/12/31:
data = ndt.fetch_data(
data_type="DISPATCHPRICE",
start_date="2021/01/01",
end_date="2024/12/31",
regions=["QLD1"],
cache_path="./cache",
)
Then, I extract the data from 2025/01/01 to 2025/07/31:
data = ndt.fetch_data(
data_type="DISPATCHPRICE",
start_date="2025/01/01",
end_date="2025/07/31",
regions=["QLD1"],
cache_path="./cache",
)
But the data of 2024/12/31 01:00 to 23:00 is missing
If I extract the data from 2021/01/01 to 2024/12/31:
Then, I extract the data from 2025/01/01 to 2025/07/31:
But the data of 2024/12/31 01:00 to 23:00 is missing