I am looking to detect a Pip spread in ema2 and ema3. //@version=5 indicator('Scalp strategy', overlay=true) // Get indicator data ema1 = ta.ema(close, 6) ema2 = ta.ema(high, 32) ema3 = ta.ema(low, 32) // Detect Buy or Sell buy = ema1 > ema2 and (ema2 - ema3) > 0.004 sell = ema1 < ema3 and (ema2 - e...