![]() |
I wish you could see me on a good day. |
Preamble
I'm working with some new features in INVRS that makes it easier to screen using custom investment models. I'm looking through the whole Canadian universe for kick-ass dividend stocks and I'm using the following metrics:- Years of consecutive dividend growth (I set a minimum of eight for this analysis),
- Dividend coverage,
- Value relative to historical dividend yield. and
- Total return (defined as projected dividend yield plus projected dividend growth).
Constructing the Template for Year Over Year Dividend Growth
To construct this model I selected eight years of dividend per share data, then wrote if(A>B,0,1) eight times, just changing the letters as I went back in time. This says that if dividends per share in year t is greater than the dividends per share in year t-1 then assign a value of zero, if not 1.Next, I sum the results of all the 'if' statements. If the sum is zero, the company has increased its dividends per share every year for the past eight years.
Running the Model for Year Over Year Dividend Growth
I ran the analysis on my initial portfolio of hundreds. INVRS lets you export the results to a new portfolio (or excel or google sheets document) and to specify new screening criteria. I screened by selecting the column that summed the if statements and set the screening criteria equal to zero.New portfolio size equals 33 companies.
Next factor is dividend coverage. I wanted companies where dividends were no more than 75% of free cash flow.
Constructing the Template for Dividend Coverage
Super simple, two pieces of data: dividends per share and cash flow per share, both for the current year. With INVRS there's no need to specify particular dates, Y is always the most current, Y-1 is last years etc. Divide A by B.Running the Model for Dividend Coverage
I run this one against the new portfolio with 33 stocks. I screen out the stocks where dividend coverage is less than or equal to .75 and greater than zero.I get a lovely little portfolio of 10.
Value is next.
Constructing the Template for Dividend Value
Since this is a dividend model it makes sense to look at value relative to dividends, right? Right.The value measure is the forward dividend yield over the average dividend yield for the past five years.
I calculate the forward dividend yield by dividing the current dividend rate (the latest dividend multiplied by the number of times per year the company pays dividends) by the current price. I select dividend yield data for each of the past five years and take the average. I divide them.
Running the Model for Dividend Value
I run this model against my portfolio of 10. If the quotient is greater than 1 then the company is relatively cheaper than it has been over the past five years. If needed I would have created a screen for this, but wow, they are all relatively cheap, and by a significant amount. Thanks pandemic.Take a look:
My portfolio of 10 remains unchanged.
Finally I look at total return.
Constructing the Total Return Template
This model calculates both elements of total return and sums them.Projected dividend yield is the same one used in the dividend value model above.
Projected dividend growth uses a modified 5 year average growth rate as a proxy. The first step is to calculate the five year average growth rate for the dividends (using six years of dividend per share data, then calculating the year over year growth for Y-6 to Y-5, Y-5 to Y-4, Y-4 to Y-3, Y-3 to Y-2, Y-2 to Y-1, Y-1 to Y and then taking the average for the five values).
Next I calculate the standard deviation of those five year over year growth rates (it's easy, there's a short cut std(L...P), where L to P are the columns with the growth rates).
My modification is to multiply the 5-year average by 1 minus the standard deviation. This "punishes" companies with a lot of variability in their growth rates and "rewards" those with a consistent growth rate.
Here's the results:
Deadly huh?
Here's the 10:
- CTC.A - Canadian Tire - Retail, Specialty Store
- CNQ - Canadian Natural Resource - Oil & Gas
- XTC - Exco Technologies - Manufacturing, Auto Parts
- TD - Toronto Dominion Bank - Major Bank
- IMO - Imperial Oil - Integrated Oil & Gas
- TCL.A - Transcontinental - Publishing, Newspapers
- TCL.B - Transcontinental - Publishing, Newspapers
- LB - Laurentian Bank - Regional Bank
- RY - Royal Bank - Major Bank
- CWB - Canadian Western Bank - Region Bank
Comments
Post a Comment