Hello Wjx32 and Traden4x,
Thanks for the suggestion regarding the comment function. I replaced the NULL with your suggestion. I'll wait to see what happens on the next entry. After posting my comment yesterday I thought about alternatives to the time control and added Juice as a filter to see if that would help.(Trade4x, Just noticed your suggestion today-great minds think alike!) I'm no code wizard but I added the following and the editor let me compile. I'm now testing the results to see if the Juice filter is being included and helps. I've just been following the EUR on 15m chart with RSX-14 and Juice at .0001. Not as aggressive as your suggested settings Traden4x. I just thought I'd first filter out the Juice=<0 bars during the flat periods. I'll be interested to spend time analyzing your tests.
Thanks Scorpion for making this available and for your continuing revisions to the expert.
To include the Juice indicator as filter I included these in the related sections inthe expert code;
-----------------------------------------------
extern double JuiceLevel=0.0001;
double Juice = iCustom(NULL,0,"Juice",0,0);
bool IsBuy = (rsx1 <= Buy_Level && rsx0 > Buy_Level && Juice>0.0001)
-----------------------------------------------
-MJ