I know there is similar question related this topic but I still cannt solve my case. So, I have one year data (365 days) of car request. I did 80%(+-280days) for train, and rest for test data. And, I make prediction with ARIMA.
Arima_model=sm.tsa.arima.ARIMA(train_df,order=(0,0,0))
result=Arima_model.fit()
future_dates = pd.date_range(start='2022-10-20',periods=73)
predictions = result.predict(start=future_dates[0], end=future_dates[-1])
The problem is, all of my prediction return the same value.
I attach the p value and autocorellation of train_df. I dont think it is because of my insufficient data. I have tried also to change the order parameter but still does not work.

