
thanks
Jeff
That's going a while back now. That's an old Neural Network EA and from looking at it, the Neural Network uses Linear Regression Slope to get signals off the slope which seems to be periods
3, 7, 14, 21
from:Code: Select all
in[0]=LinRegresSlope2(3,shift+1);
in[1]=LinRegresSlope2(7,shift+1);
in[2]=LinRegresSlope2(14,shift+1);
in[3]=LinRegresSlope2(21,shift+1);
#define BARN 50
) and is basically Neural network with T3 smoothing to get it's buy or sell signals.Code: Select all
// Âåðíèòå
Interesting code based on self-optimizing. Here's some additional info I can decipher as well.Jimmy wrote: Fri Apr 04, 2025 7:41 pm
No idea what this means thoughHoping Mrtools can decipher it even more!Code: Select all
// Âåðíèòå
.......
Ah ha! So it does use T3. Thanks for confirmingPipa wrote: Fri Apr 04, 2025 8:04 pm The raw neural network output is smoothed using the T3 moving average filter.