I like to add a column with the result of a relative strenght comparison of 2
stocks. In the chart it shows the plotted results but i can't figure out wich
add column statements i need to add.
I want to do an exploration of these plotted results for the watcchlist.
this is the formula for the relative strenght comparison, what add column
statement do i have to add to get the plotted resluts also in the exploration.
/* Relative Strength Comparison with Relative Strength Moving Average*/
RSTick = "^DJI"; //Replace with ticker of your choice
WMAvalue = Param("RelStre WMA", 30, 1, 55, 1);
Plot ( RelStrength( RSTick),"RelStrength "+ RSTick, -8 );// Plot Relative
Strength
Plot (WMA( RelStrength( RSTick),WMAvalue)," RelStrength WMA "+ WMAvalue,
colorBrightGreen, styleLine);