def insideBar = close < close[1] and close > open[1] or close < open[1] and close > close[1];
def InsideUp = insideBar[1] and close > high[1] ;
def InsideDown = insideBar[1] and close < low[1] ;
I'm trying to get TOS to plot a green box over any inside and ups that extends all the way to the right. vice versa for the inside and downs with a red highlighted box. Can anyone help me with that real quick? I want it to look like mobius pivot lines indicator boxes.
def InsideUp = insideBar[1] and close > high[1] ;
def InsideDown = insideBar[1] and close < low[1] ;
I'm trying to get TOS to plot a green box over any inside and ups that extends all the way to the right. vice versa for the inside and downs with a red highlighted box. Can anyone help me with that real quick? I want it to look like mobius pivot lines indicator boxes.