here is the code:-
if((highTest - lowTest) < (softSpotRange * TickSize))
{
highTest = Math.Round(highTest - 1 * TickSize,2,MidpointRounding.AwayFromZero);
lowTest = Low[0];
a=2; //retest full range
if((highTest - lowTest) < (softSpotRange * TickSize));
{
stopLooking = true;
break;
}
}
So i have no idea why this is.

Comment