Australian (ASX) Stock Market Forum

Can AB check if a share is outperforming sector and AO? RSC?

Joined
27 January 2011
Posts
108
Reactions
0
Can Amibroker show if a stock is outperforming its industry sector and/or AO? I asked about checking this manually before and people said I was after the Relative Strength Comparison... if this is accurate then i suppose I am asking if AB has the function for RSC?
 
Can Amibroker show if a stock is outperforming its industry sector and/or AO? I asked about checking this manually before and people said I was after the Relative Strength Comparison... if this is accurate then i suppose I am asking if AB has the function for RSC?

This is what I use. Not sure if you're still after this.

_SECTION_BEGIN("Stan Weinsetin RSC");
maPeriod = Param( "MA Period", 52 * 5, 0, 500, 1 );
rsSymbol = ParamStr( "Base Index Symbol", "!XAO" );

rs = RelStrength( rsSymbol );
rsMan = ( rs / MA( rs, maPeriod ) ) - 1;

dynColor = IIf( rsMan >= 0, colorLime, colorRed );
Plot( rsMan, "RS Mansfield", dynColor, styleArea );
_SECTION_END();

You can click on Parameters and change the Base Index Symbol to whatever you like.
 
Top