Any thoughts on parameter combinations to try? Think of this as a bit of black box in which you think of some indicators or values that "might" have relevance. Then the system tests through looking for patterns and tells you if there is any edge there.
I have tried a lot of combinations that were unable to produce any statistically significant results. Then others that have produced tons. So clearly, if you feed it garbage, you will not get any patterns meeting the required thresholds.
I am currently testing:
AddParam(RSI(7,1)[0]," ");
AddParam(RSI(7,1)[1]," ");
AddParam(RSI(7,1)[2]," ");
AddParam(RSI(7,1)[3]," ");
AddParam(RSI(7,1)[4]," ");
AddParam(RSI(7,1)[5]," ");
AddParam(ADX(21)[0]," ");
AddParam(ATR(7)[0]/Close[0]," ");
AddParam(RSI(Volume,7,1)[0]," ");
This parameter combination is generating a lot of great patterns. Interestingly, just
AddParam(RSI(7,1)[0]," ");
AddParam(RSI(7,1)[1]," ");
AddParam(RSI(7,1)[2]," ");
AddParam(RSI(7,1)[3]," ");
AddParam(RSI(7,1)[4]," ");
AddParam(RSI(7,1)[5]," ");
By itself is not enough to create patterns that can exceed the required thresholds. Requires some indication of ATR and Volume.
I have tried a lot of combinations that were unable to produce any statistically significant results. Then others that have produced tons. So clearly, if you feed it garbage, you will not get any patterns meeting the required thresholds.
I am currently testing:
AddParam(RSI(7,1)[0]," ");
AddParam(RSI(7,1)[1]," ");
AddParam(RSI(7,1)[2]," ");
AddParam(RSI(7,1)[3]," ");
AddParam(RSI(7,1)[4]," ");
AddParam(RSI(7,1)[5]," ");
AddParam(ADX(21)[0]," ");
AddParam(ATR(7)[0]/Close[0]," ");
AddParam(RSI(Volume,7,1)[0]," ");
This parameter combination is generating a lot of great patterns. Interestingly, just
AddParam(RSI(7,1)[0]," ");
AddParam(RSI(7,1)[1]," ");
AddParam(RSI(7,1)[2]," ");
AddParam(RSI(7,1)[3]," ");
AddParam(RSI(7,1)[4]," ");
AddParam(RSI(7,1)[5]," ");
By itself is not enough to create patterns that can exceed the required thresholds. Requires some indication of ATR and Volume.