Horizontal line sin Indicator panes- Help needed

srichakra

Active Member
#1
Hi,

This is pretty basic question. I use a indicator pane and plot RSI (14) and RSi(25). I watch for crossover of the zero line. Every time I change a scrip the zero line needs to be redone. How do I set up the indicator pane to display the zero line always for all scrips.

Thanks in advance for the help /tip.
 

KelvinHand

Well-Known Member
#2
Hi,

This is pretty basic question. I use a indicator pane and plot RSI (14) and RSi(25). I watch for crossover of the zero line. Every time I change a scrip the zero line needs to be redone. How do I set up the indicator pane to display the zero line always for all scrips.

Thanks in advance for the help /tip.

SetChartOptions(0,0,chartGrid50/*|chartGrid30|chartGrid70*/);
periods = Param( "Periods", 14, 1, 200, 1 );
Plot( RSI( periods), _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style") );
 
#3
Thanks Mr.Kelvin,

I just dragged and dropped the CCi indicator from the indicator list into a new panel at the bottom of the screen and found that it had no set up features to hold lines at ZERO point for all subsequent charts that are browsed.

I guess that I will do an AFL as per your code and then use that for plotting.

Thanks for your guidance.
 

Similar threads