Skip to main content

2012/2013:股息增长投资

http://gengwg.blogspot.com/股息增长投资(Dividend Growth Investment)和房屋出租很相似。假设我以20万美元现金买了一个房子来出租,租金为1000美元/月。假设我们不考虑税收,资金的时间价值,通货膨胀,市场价值等等。如果租金是固定的,那么过了200个月,我将得到20万美元的租金。但是,如果租金每年能上涨区区的3%,那么只要165个月,我就可以得到20万美元的租金。股息增长投资和房屋出租有很多共性。如果我用1000元投资一个有4%股息率的股票,如果股息不增长,那么过了25年,我会收到1000美元的股息。然而,如果股息每年增长7%的,只要15年左右,我就会得到$1000红利。

从2009年开始,我采用了股息增长投资策略来管理我的退休账户,我的目标是当我们退休的时候,我们有足够的股息收入,来保障我们的生活品质。这篇文章详细说明了我为什么选择股息投资作为退休投资策略: http://www.mitbbs.com/article_t0/Investment/31238281.html

到2012年年底,我的年股息收入将是约17300美元,比2011年年底的13116美元多了很多。其中的大部分是来自新投资(Rollover IRA/Roth IRA)和股息再投资,而股息增长本身带来了约900美元左右。 除了CTL没有增长股息,WM和NUE会在12月份宣布股息增长外,所有的其他股票都增长了股息,平均增幅为8%,高于我预期的7%,CAH和KMR不只一次宣布了股息增长。

我的目标是到2013年底年股息达到19600美元,比2012年增加2300元,其中 1200-1300元来自股息增长,新投资和股息再投资会带来约1000元的股息。

2012我的工作变更使我可以把钱从401K转到Rollove IRA上,我有更多的资金投资到股息增长投资上,最近购买了很多股票。现在回头看,也许我应该更耐心一些,这是我以后要改进的。

我最近关注的股票有MCD,MO,PM,WAG,CVX,COP,KMR,LMT,NSC及INTC。所有这些股票都有较好的股息收益率和高股息增长率。在我作出任何购买决定之前,我需要做更多认真的研究。

附:
2011年回顾与2012年计划:
http://www.mitbbs.com/article_t0/Investment/31253657.html
2010年回顾和2011年计划
http://www.mitbbs.com/article_t0/Investment/31235969.html

Comments

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...