@tradeking313 See if this watchlist works for you. It's after trading hours now so I can't test in a live environment, but from minimal testing on my end, it should work
Code:
# EMA Crossover Watchlist
# tomsk
# 1.11.2020
def ema1 = ExpAverage(close,9);
def ema2 = ExpAverage(close,26);
def crossOver = if ema1 crosses above ema2 then 1 else if ema1 crosses below ema2 then -1 else 0;
AddLabel(1, if crossOver == 1 then "Up" else if crossOver == -1 then "Down" else " ", Color.BLACK);
AssignBackgroundColor(if crossOver == 1 then Color.GREEN else if crossOver == -1 then Color.RED else Color.BLACK);
# EMA Crossover Watchlist