Skip to main content

讲讲投资的个人经验

发信人: palmbeach (pingping), 信区: Investment
标  题: 讲讲投资的个人经验
发信站: BBS 未名空间站 (Mon May 26 10:39:59 2014, 美东)

投资一些年还在摸索,讲讲我自己经常犯的一些错误,分享给大家:
第一,投自己知道的东西,不要投自己不知道的东西。自己不知道的东西可能你会赢一
些,但是就像赌博,有赢也有输,大概50/50 是最好的。投自己知道的东西呢,大概有
60%的概率是赢的。那大家说我们不专业做股票,该投什么。投指数基金,再加一些自
己经常用到东西-比如你经常在Costco买东西,可以关注一下Costco的股票之类的。
我虽然知道这是个错误,但是还是经常犯,经常听说哪个比较热,就蠢蠢欲动,现在比
以前少多了,但有时还会犯。
第二,系统性的管理自己的资产组合,包括各类资产。因为我们都有工作孩子,加上日
常生活琐事,经常这个投资管理就放在了最后一程。在此,我有时埋怨于自己的性格,
我确实是非常有创意,但是不善于系统性管理。非常讨厌家里整东西。可能很多人如我
,那样我们就只能把投资当作一项工作。我们必须得做。可能那样的话,就会有所改善。
第三,估值合理和好公司一样重要。我经常就觉得公司好,就认为现在的估值是合理的
。市场是非理性的,而我们要用清醒的头脑去做独立的估值。当然,在现今的牛市,很
难找到估值合理的。如果你对市场充满信心的话,那就用市场做一个衡量标准。如果比
市场便宜很多,那就还可以。当然首先是你对公司的业务充满信心。
我有幸与好几位天才的投资者工作,可惜天赋有限,所以未能全学他们的。但是,我可
以告诉大家的是,即使是非常有天赋的投资者,他们都是非常系统性的做研究,其研究
细节程度超过常人。没有人可以拍脑袋投资就可以赚钱的。从他们那里学到的就是,做
一样事情需要全身心投入,投资也是如此。所以,不要盲信他人关于投资的神话。踏踏
实实做自己可以做的,是最好的。

http://gengwg.blogspot.com/

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