Search found 2 matches

Go to advanced search

by moreaubrady
Wed Aug 11, 2021 12:02 pm
Forum: Pine Script Q&A
Topic: ALERTS TO MY CMA
Replies: 1
Views: 581
 
Jump to post

Re: ALERTS TO MY CMA

EVERYONE!! : Matt has helped me with my current post above, ill provide script below // @version=4 study("EMA Alert", overlay=true) // Get EMA & plot it ema = ema(close, 50) emaColor = close > ema ? color.green : color.red plot(ema, color=emaColor, linewidth=2) // Check for bearish cross of price < ...
by moreaubrady
Tue Aug 10, 2021 8:10 pm
Forum: Pine Script Q&A
Topic: ALERTS TO MY CMA
Replies: 1
Views: 581
 
Jump to post

ALERTS TO MY CMA

HEY guys brady here, first time poster, long time mastery course student. (that was supposed to be a joke lmao, title="Not Funny") anyways, im trying to get my CMA line (colored moving average) to have alert function, so id like it when the CMA turned red to post a red x and alert its changed red. l...

Go to advanced search