Skip to main content

关于IRA的问题

1. 如果你买个30年的bond, 一个放在traditional IRA里延迟收税, 一个放在
taxable account, 前者会更好, 但是有代价 - 59岁半前取的话有penalty。

2. 如果你买的是stocks, 好处可能还真不大, 因为前者最后要付的是收入税, 通常
更高, 后者付的是投资税, 一般要低一点。

3. 能否抵制通胀也很难说, 长期来说一般会, 但更高的回报会有相应的更高的risk。

4. 没income就不能投IRA了。

5. Traditional IRA如果再用backdoor转Roth IRA, 还是不错的。

---------

IRA跟401K类似,都是投资账户,也有Pre-tax和Roth之分,到底选哪种网上讨论很多。


如果你只想投点钱抵御通胀(保本),而且比较灵活地取出来,你可以考虑直接买财政
部的iBond ($10K每年每人),目前根据通胀计算出的综合利率是2.76%。

https://www.bogleheads.org/wiki/I_savings_bonds

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...