Explanation on Ranking: Summation Only

In ranking systems, there are three options to choose for each composite node / ranking system.

  • Lower values are better Lower values
  • Higher values are better Higher values
  • Summation only

The white paper, https://www.portfolio123.com/doc/RankingDoc.pdf, explain the first two values. Can someone explain how the “Summation only” option works with a use case?

Under which kinds of circumstances would I want to use a summation only versus a standard ranked system?

Has anyone had an experience using a combination on ranking styles?

  • David

Composite nodes re-normalize values from 0-100 , basically stretching them out. This doesn’t work well for something like a Piotroski F-Score where there are 8 on/off conditions and stocks are bunched up in the same rank but in very different quantities. What you’d like to see in an F-Score rank is an interval of 12.5 (approx) percentile between ranks:

100 rank for stocks that pass all 8 conditions
87.5 for stocks that pass any 7 conditions
75 for stocks that pass any 6 conditions
etc.

Summation will allow you to do this. See my public Piotroski F-Score here: https://www.portfolio123.com/app/ranking-system/155

NOTE: I say approx because of a quirk in in ranking. for ex. in SP500 universe Rank>87 gets you all stocks that pass 7 or more F-score conditions

Cool. I get how that might work for boolean use cases, such as a traditional Piotroski analysis. I seem to be getting better result when I use summation at a low level within a ranking and then re-normalize as a last step to get that even distribution of quantiles.

I think that summation behaves a little better in some cases because less information is lost through persistent renormalizations. For example, even though some company could look “average” (i.e., it fits in the median quantile) according to some metrics, the company can still be a dog. Normalizing metrics upon metrics would obscure the true data. causing this dog of company to look average. However, if we just average the metrics, some of the “suck” might still shine through.

Does this make any sense?