What is missing in this code. The bars don't print until I get another flag. I would like to just change the MA color instead of flaging the change. But haven't figured it out yet.
Russ
Russ
if (vMA.getValue(MAStudy.MA) > close(0))
setBarFgColor(Color.red);
if (vMA.getValue(MAStudy.MA) < close(0))
setBarFgColor(Color.blue);
Comment