diff --git a/pinescripts/Three_ATR_EMA.pine b/pinescripts/Three_ATR_EMA.pine index 7651e1c..f619096 100644 --- a/pinescripts/Three_ATR_EMA.pine +++ b/pinescripts/Three_ATR_EMA.pine @@ -17,9 +17,9 @@ upper_band = ema + (tr * atr_multiplier) lower_band = ema - (tr * atr_multiplier) // Bullish Signal Condition -bullish_signal = close < ema and - close[1] <= lower_band[1] and - close > close[1] +bullish_signal = (close < ema + and close[1] <= lower_band[1] + and close > close[1]) // Plotting plot(ema, "EMA", color=color.new(#00BFFF, 0))