Thank you for your response.
I have reviewed your code and I don't see any items. Please try adding Print()s when your conditions to submit orders you expect but do not see return as true.
For example:
//If Previous Up-Bar Has No WICK use the Low
if((Low[0] + 10 * TickSize) > Open[0])
{ //Set Stop Live Until Cancelled at Previous Bar's Low
buyStopOrder2 = ExitLongStop(0, true, buyStopOrder2.Quantity, Low[0] - (stopLoss * TickSize), "buyStopII", "addInBuy");
Print(Time[0] + " addinBuy");
}

Comment