I am not a coder, obviously
As with many indicators with levels, the code is not color coded for the different levels.
SetLevelValue(0,50);
SetLevelValue(1,80);
SetLevelValue(2,20);
SetLevelStyle(STYLE_DOT,1,Gray);
Standard RSI indy. I want to color code the levels.
This below didn't work:
SetLevelValue(0,50);
SetLevelValue(1,80);
SetLevelValue(2,20);
SetLevelStyle(0,STYLE_DOT,1,Yellow);
SetLevelStyle(1,STYLE_DOT,1,Green);
SetLevelStyle(2,STYLE_DOT,1,Red);
Can you post the proper correction? Thanks
Cheers