I currently have a GridPrices API that retrieves day-ahead grid prices for the next day. For my EMS setup, I need forecasts for the next 7 days. My plan was to combine the day-ahead data from the API with Prophet to fill in the missing days at the end of the predicted series.
However, I’m running into a problem: when I use the forecaster with WEA, it seems to overwrite the day-ahead data from the API. The new “ML Forecaster” service also doesn’t seem to allow forecasting only the missing data points.
Has anyone tackled this problem before? I’m looking for a way to:
Keep the API’s day-ahead data intact.
Extend the forecast for the remaining days (up to 7).
Any suggestions or recommended approaches would be greatly appreciated!
To make it a bit clearer:
I currently use a GridPrices API that provides day-ahead grid prices for the next day. For my EMS setup, I need a 7-day forecast. My idea was to combine the API’s day-ahead data with Prophet to predict the remaining days.
However, I’ve run into an issue: when I use the forecaster with WEA, it seems to overwrite the API’s day-ahead values. The new “ML Forecaster” service also doesn’t appear to support forecasting only for the missing days.
Has anyone encountered this before? I’m looking for a way to:
Keep the API’s day-ahead data unchanged.
Extend the forecast to cover the remaining days (up to 7 total).