let me better explain the test result in post 1....
in that test there was only one variable being optomised, so to speak.... it was the buy rule.... and really we were not optomising, we were just testing all rules in one single test....
those rules were numbered 1 to 280.... the first column in the test is labeled "pass".... ordinarily we would not focus on that column..... but here the pass correlates to a precise rule....
so pass 1 is rule 1, pass 2 is rule 2 and so on.... and there is a pattern to the filters used also..... once you get a grasp on it , it's a simple matter to know exactly what pass 11 is ....
if you look at the result you'll see pass 272 placed first in the table.... and pass 272 is of course rule 272 which is
if(buy == 272 && dayrsibuy && hma4 > hma41) {EnterLong = true;}
......
so we can at a glance see which rule worked best and also which filter worked best......h