A bit lack of information regarding NN architecture and hyperparameters.
Let's say you have X_t-n, X_t-n+1,... X_t-2, X_t-1, X_t as inputs. If you want to predict Delta on 5 days, the target output during training should be (X_t+5 - X_t), not the input sequence.
Also pay attention to the...