Trying to figure out how to turn off the sell label when price is above the 200D MA as well as turn off the buy label if price is below the 200D ma indicator("Redlight-Greenlight", overlay=true) GreenLightMA = ta.sma(close, 7) RedLightEMA = ta.ema(close, 47) BullMarket = ta.sma(close, 200) plot(Gree...