Hi Esignal Users. I use a chart with Price and a custom Stochastic on the top of my monitor, with a custom MACD on the bottom. I am looking for and EFS or another file that will put oversold and overbought lines at the 80 and 20 % areas of the chart. I am sure many of your have seen this is the past. However, I do not know how to do this in esignal. Is there a way?
Announcement
Collapse
No announcement yet.
Overbought/Oversold Lines on Charts?
Collapse
X
-
bradranson
The easiest way to do that is to open your Stochastic efs using the Editor (Tools-> EFS-> Editor form the main menu) and add the following two lines of code in the main function
PHP Code:addBand( 80, PS_SOLID, 1, Color.black,"80");
addBand( 20, PS_SOLID, 1, Color.black,"20");
Alex
Comment