Quote from frostengine:
The indicator values are passed as raw values to a specialized NN that learns underlying patterns with those values that at the moment are being trained to predict if the price will be higher or lower 5 bars from now.
For example:
AddParam(RSI(3,1)[0],"RSI3 ");
AddParam(RSI(7,1)[0],"RSI7 ");
AddParam(RSI(14,1)[0],"RSI14 ");
Means I am adding the values for RSI(3), RSI(7), and RSI(14) as inputs.
Then this prediction can be used to build strategies around.
Ok thanks,
There is a misunderstanding at my side because of I thought patterns are something you can formalize. You cannot formalize NN, it is a black box, you don't know how it mixes the input parameters. I worked with NN a lot, I used different inputs, no RSI or other indicators, I dislike them.