Confession time.
I get trapped badly by the very same setup over and over again.
1 The shot over the bow – 2 final leg – 3 break the bow sequence


The funny thing is, I’m the only person on the planet who made an indicator to avoid this.
if (ExtATRBuffer[ArrayMaximum(ExtATRBuffer,45,i+1)]<50 && ExtATRBuffer[i]>50){
ObjectCreate("Pepper"+IntegerToString(i), OBJ_TREND, indicator_window, Time[i], ExtATRBuffer[i], Time[i], 31);
ObjectSetInteger(0,"Pepper"+IntegerToString(i),OBJPROP_COLOR,clrBlue);
ObjectSet("Pepper"+IntegerToString(i),OBJPROP_BACK,1);
ObjectSet("Pepper"+IntegerToString(i),OBJPROP_RAY_RIGHT,false);
ObjectSet("Pepper"+IntegerToString(i),OBJPROP_WIDTH,14);
}
if (ExtATRBuffer2[ArrayMaximum(ExtATRBuffer2,42,i+1)]<50 && ExtATRBuffer2[i]>50){
ObjectCreate("Pepper"+IntegerToString(i), OBJ_TREND, indicator_window, Time[i], ExtATRBuffer2[i], Time[i], 31);
ObjectSetInteger(0,"Pepper"+IntegerToString(i),OBJPROP_COLOR,clrBlue);
ObjectSet("Pepper"+IntegerToString(i),OBJPROP_BACK,1);
ObjectSet("Pepper"+IntegerToString(i),OBJPROP_RAY_RIGHT,false);
ObjectSet("Pepper"+IntegerToString(i),OBJPROP_WIDTH,14);
}
Of course, I had to specialize in one single instrument first. Well, at least now I am certain that I should be looking for a Gray divergence, not a yellow one.
Achilles Dent: Love Changes Something