The Chowder Matrix / 5 Year dividend growth

Hi,

I am trying to test the Chowder Matrix but could not code 5 year dividend growth successfully.
Can anyone help please? Thanks

Div5YCGr% should do it. I don't know what the Chowder Matrix is, but that is P123's 5-year dividend growth factor.

1 Like

Thanks for your help.
I tried this
(IAD + Div5YcGr%) > 0.12
but failed.
Thanks.

You have mixed scaling with % being something like 3.42% and the test being decimal. Divide by 100 or multiply by 100 depending on the IAD scale.

Cheers,
Rich

1 Like

I'm not sure what you're trying to do here. IAD is the indicated annual dividend. So for Apple, for instance, IAD is $1.00. Div5YcGr% is in annualized percentages, so 0.12 would be 0.12%. If you want 12%, use 12. It doesn't really make sense to add a dollar amount to a percentage.

What you want is probably (Yield+Div5YcGr%)>12

1 Like

Thanks

Thanks.
But this message was returned when I put in your codes , (Yield + Div5YcGr%) > 12
" ERROR: Invalid criteria in Rule 3. Error near 'Div5YcGr%': Invalid command 'Div5YcGr%' "
No idea why it said 'Div5YcGr%' is a Invalid Command.

Yield+ Div5YCGr%>12
This works for me, maybe the lower letter is the problem?

Thanks but still didn't work here, weir...

Please help

The factor is only available for stocks as it references statement dates. Perhaps you can use something like Gr%(Yield, FHist("Yield", 5 * 52), 5) to emulate it.

1 Like

Thanks, it's done.