When a move up from an LL gets bent back down before the 8 EMO is hit, making yet another LL, the price will get rejected.
2 examples:

GTF stands for Get The Hell Out.

There is no thrust yet.
The target area is 1.0364 (W3M) – 1.0349 (W3F) zone.
//////////LL
if (i>0 && MFI[i]>7 && MFI[i]<68
&& Drive[i]>-1
&& Drive[ArrayMinimum(Drive,28,i)]<0
&& Low[i]==iLow(symbol,0,iLowest(symbol,0,MODE_LOW,40,i))
&& Low[i-1]>Low[i] && thrust[i]<1 && thrust[i+1]<1 && thrust[i+2]<1 && thrust[i-1]<1
&& L80[i]>Close[i]
){
ObjectCreate("PINUSXY"+IntegerToString(i),OBJ_TEXT, 0, Time[i],Low[i]-50*Point);
if (ll[i+3]==true) ObjectSetText("PINUSXY"+IntegerToString(i),"LL-GTF", 26, "Impact", clrGreen);
else ObjectSetText("PINUSXY"+IntegerToString(i),"LL", 26, "Impact", clrCrimson);
ObjectCreate("PINUSXX"+IntegerToString(i),OBJ_TEXT, 2, Time[i],70);
ObjectSetText("PINUSXX"+IntegerToString(i),"S/L53+/S30+", 21, "Impact", clrCrimson);
if (ll[i+4]==true || ll[i+5]==true || ll[i+5]==true) ObjectSetText("PINUSXX"+IntegerToString(i),"S/E8!!!", 21, "Impact", clrCrimson);
ll[i]=true;
}

