I am using an additive Facebook Prophet model for predicting forecasts. On my test data it seems to be understanding the spikes well, but the overall trend is completely wrong, based on the last few data points going down:
Is there a way to level the trend line? I have adjusted changepoint_prior_scale many times, the current settings are:
changepoint_prior_scale = 0.25, changepoint_range=0.85
I am surprised that it continues to project a negative trend rather than a level trend, since the forecast window is quite long compared to the regularity of the major changepoints. Does Prophet always forecast trend so linearly? Is there a way to adjust this?