joshua74133
Member
Mobius made this, I LOVE IT. I use it to grab my attention. can someone help me add a alert to it? I would like to have the alert be custom sound so I can add a sound that I have saved to my computer rather then the chime, bell or ring that TOS has. thanks for any help
plot EMA50 = ExpAverage(close, 45);
def EMA200 = ExpAverage(close, 200);
AssignBackgroundColor(if close crosses EMA50
then color.red
else if close == EMA50
then color.red
else if close crosses above EMA200
then color.yellow
else if close == EMA200
then color.red
else color.current);
plot EMA50 = ExpAverage(close, 45);
def EMA200 = ExpAverage(close, 200);
AssignBackgroundColor(if close crosses EMA50
then color.red
else if close == EMA50
then color.red
else if close crosses above EMA200
then color.yellow
else if close == EMA200
then color.red
else color.current);