Skip to main content

Sell Your RSUs As Soon As They Vest

I heard in a casual conversation that some of my co-workers are holding their RSU shares after the shares are vested. They thought there are some tax advantages in holding the RSU shares.
There is no tax advantage whatsoever in holding the RSUs after they vest.
RSU stands for Restricted Stock Unit. It’s a form of equity-based compensation. The employer gives an employee a number of RSU. The employee can’t do anything with them immediately. That’s the restricted part.
These RSU’s vest in batches over a number of years, typically four years. When the RSU’s vest, the employee receives the employer’s stock. If the employee leaves the employer, all unvested RSU’s are forfeited. That’s another part of the restriction.
RSU is basically a deferred cash bonus calculated and paid in shares. If the employer’s stock does well, the bonus becomes larger. RSU is taxed to the employee as a cash bonus when they are vested.
Any gains after vesting can be taxed as a long-term capital gain if you hold it long enough, but you get the same effect if you buy any stock with your own money.
In addition to mistakenly thinking there are some tax advantages to holding RSU shares after they vest, my co-workers also fall for the endowment effect in behavioral economics. If they get a cash bonus they won’t use it all to buy the stock but if they get shares they don’t sell.
Compare with a regular cash bonus:
Holding the RSU shares after they are vested is the same as the employer giving you a cash bonus and you decide to use the bonus to buy the employer’s stock. It works only if you believe the employer’s stock will do better than the market and all other alternatives.
Besides the issue of being undiversified and having too much tied to your employer, just from a pure investment’s point of view, if you are going to buy a stock with the bonus, you can buy whatever stock you want. Is the employer’s stock really the best in a universe of thousands of stocks? Unlikely.
Therefore, always sell RSU shares as soon as they vest. If you are not contributing the maximum already, increase the contributions to the 401k plan, or fund a traditional IRA or a Roth IRA. Otherwise put the money into a diversified portfolio in a taxable account. Don’t hold the RSU shares.

https://thefinancebuff.com/no-tax-advantage-in-rsu.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...