Surgo, I have 1 input neuron, 1 hidden layer with 1 neuron, and 1 output neuron.
I am using the AForge library.
1 neuron will not be able to generalize on anything complex. You're just creating non-linear scalar function which will look like W_h_o * sigmoid(W_i_h * x + b_i_h) + b_h_o, which takes only one scalar x as input. Let's say, input price is 100. What be the delta in 5 days? We don't know anything else, so it could be e.g. +5, or -5. There's no need in NN in this case, you can just calculate mean and std, or build ARIMA - it will be anyway way better

For your deltas going up and down around 0, it would predict something close to the mean of input deltas I suppose.