Hello everyone,
I am looking for movie average crossover scanner and alert. Here is the short moving average cloud.
input ema1low = 5;
input ema1high = 12;
def ema5 = ExpAverage(close, ema1low);
def ema12 = ExpAverage(close, ema1high);
AddCloud(ema5, ema12, Color.green, Color.RED);
I would like to create scanner where price crosses above the 5-12 ema cloud on 10 minutes and also the alert. Thank you in advance..
I am looking for movie average crossover scanner and alert. Here is the short moving average cloud.
input ema1low = 5;
input ema1high = 12;
def ema5 = ExpAverage(close, ema1low);
def ema12 = ExpAverage(close, ema1high);
AddCloud(ema5, ema12, Color.green, Color.RED);
I would like to create scanner where price crosses above the 5-12 ema cloud on 10 minutes and also the alert. Thank you in advance..