_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();
This is the code I obtained. I'm not sure how closely this aligns with what Weinstein would be using.
Does anyone see the value in this indicator using the MA? Is this much the same as just using a ratio of price?