DislikedHi Steve,
just checked the code for 24H 2.6 and I might have spotted an issue:
//Cancel the basket if GJ is wrong side of 200 sma
if (UseSma && (Bid < LtfSMA + 0.2 || TrendDirection == down) )
{
GlobalVariableDel(OverboughtGV);
return;
}//if (Bid < LtfSMA)
//Lower low check
if (Low[1] < Low[2])
{
GlobalVariableDel(OversoldGV);
return;
}//if (Bid < High[1])
Should the OversoldGV not be OverboughtGV?Ignored