Hello,
I am trying to implement a RNN using LSTM to predict values in a time series.
This is, I have around 1400 samples (one sample per each day), and I would like to predict the value in a day given a window of previous values.
When plotted, the dataset looks like this:

Therefore, it is very noisy. I tried using different methods of LSTM (memory between batches, time steps, etc) and have got quite bad results, so I need advice on how to tackle this problem.
I've done other problems where the dataset looks somewhat seasonal or stationary, but those methods can't handle this case, at least from what I have tried.
Any help is highly appreciated.