Skip to main content

最近想拿出闲钱的一部分来买

 发信人: baoniao (胡礼), 信区: Investment
标  题: Re: 500伪币求指导:最近想拿出闲钱的一部分来买Vanguard ETFs~~
发信站: BBS 未名空间站 (Fri Aug  9 03:14:07 2013, 美东)

既然是买vanguard,那不妨就用最正统的diversification:

Vanguard Large Cap ETF (VV)
Vanguard Small Cap ETF (VB)
Vanguard Small Cap Value ETF (VBR)
Vanguard Europe Pacific ETF (VEA)
Vanguard Emerging Markets ETF (VWO)
Vanguard Total Bond Market ETF (BND)

bond远比stock要复杂,而且现在bond市场又不好,与其花精力研究,不如就选个total
bond。

相互的比例就看你对risk的态度(主要就是最后一个bond的比例)。然后每隔一年
rebalance一次。

REIT和VYM不要买,这类基于divident的ETF只对tax-efficient帐户有意义。

最后,既然你是买ETF而不是mutual fund,那就完全没有必要限制于Vanguard。




长期投资我最近一直在研究
1.以你父母名义凭护照在好几个broker开投资账户可以不在美国缴税,收益在中国交不
交税很难讲,自己打听吧。
2. 如果不care收益,从财富diversity角度可以找投资公司,不过一般都不如自己管理
,最大的风险是几年一个周期,比如说熊市,赚的赔进不说,本钱都不保险。
3.稳妥的方式是买几种互补的etf,定期rebalance,你可以google一下,很多

 

 

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