earlyinout
New member
just trying to create a simple label that is green if mov. avg fast is above mov.avg slow?
As always your help is appreciated!
Code:
def ma8 = movAvgWeighted(8);
def ma34 = movAvgWeighted(34);
addLabel(1, "MAW 8 VS 34" + IF ma8 > ma34 then color.GREEN else color.RED);
As always your help is appreciated!