Good Day!
Here is a simple code, I'm wondering if someone can please recode the "> .08" to read "between -.08 and .08"?
Basically, anything above or below 8% from the open I would like highlighted.
input length = 9;
def ask = close;
AddLabel(yes, Aspercent((ask - open) / open[length]), if (close - open) / open[length] > .08 then Color.downtick else color.white);
Thanks so much!
ST
Here is a simple code, I'm wondering if someone can please recode the "> .08" to read "between -.08 and .08"?
Basically, anything above or below 8% from the open I would like highlighted.
input length = 9;
def ask = close;
AddLabel(yes, Aspercent((ask - open) / open[length]), if (close - open) / open[length] > .08 then Color.downtick else color.white);
Thanks so much!
ST