I had the same problem...I changed 5 lines in the code from plot ... to def ... so these 3 indicators that are at the bottom of the chart don't appear. I'm sure the OP was using them to validate certain conditions during testing. Hopefully this doesn't screw up the code. maybe Yung will reply if I've done something awful
1)
plot DMIndxw = if IsNaN(close) then Double.NaN else if tempDIw < 0 then -1 - tempDIw else 1 - tempDIw;
==>
def DMIndxw = if IsNaN(close) then Double.NaN else if tempDIw < 0 then -1 - tempDIw else 1 - tempDIw;
2)
plot trueqb2 = QB2[1];
trueqb2.SetDefaultColor(GetColor(27));
==>
def trueqb2 = QB2[1];
#trueqb2.SetDefaultColor(GetColor(27));
3)
plot trueqs2 = QS2[1];
trueqs2.SetDefaultColor(GetColor(27));
==>
def trueqs2 = QS2[1];
#trueqs2.SetDefaultColor(GetColor(27));