♥ 0 |
Howdy, I’m having trouble with one part of a SLOWRSI indicator code that I want to fill in with colors based on where the indicator level is. I have done the same with a couple other indicators, but can’t get the bold part of the code correct for this one. Would appreciate any help. #slowrsi def ema = ExpAverage(close, emaLength); plot SlowRSI = (emaLength,rsiLength,over_bought,over_sold),emaLength); assignBackgroundColor(if SlowRSI>= 70 then color.ORANGE else if SlowRSI< 41 then color.MAGENTA else if SlowRSI> 58 then color.LiGHT_GREEN
I am not really sure what it is I’m looking for the variables…. Much appreciated RB RESOLVED
Marked as spam
|
Please log in to post questions.