Skip to main content

新手炒股:亏8万和6万的例子

2010年曾在9.2买入一只股票,最高涨到12,可高位长阴后还依然看好,跌下来后又用margin补仓。越跌越买,越套越深。也不知道及时止损,结果在一只股票上就损失8万多。现在这只股票大概3块钱左右。
除了不知道止损和越跌越买margin加仓的问题,还有就是散户心理加侥幸心理:我12块钱都没卖,现在10块了,就更不卖了。
(后来才明白:跌下来的2块钱是一个信号:反转了,该卖出了)。

2011年,一只股票都跌了50%多了, 感觉已经很低了,再次大跌之后抢反弹。
本来也挣了钱,但主要觉得跌了这么多,应该不会再次大跌。
下跌通道的股票,真是跌起来遥遥无期,越陷越深,根本没有解套的机会。
最后只好斩仓,不到一个月就赔了6万。这只股票后来跌幅超过90%

下跌途中的股票,不要轻易去猜低,只有出现明显的买入信号:比如希望之星,红三兵等。可能股价已经涨了10%20%甚至30% 但这个涨幅是告诉你,可以买入了。以前总是想抄底,总是后悔没有买到底部,升上来又不敢买。

8万和6万,这学费交的也真够贵的。
能挣到钱,可为什么又都亏回去呢?
除了学习一些技术指标,读一些股票的书外,进行了思考和总结。
1,严格设立止损,跑的要快,以不赔为上策。机会总会有。
2,以前是越跌越买。现在是正好相反,涨起来才买,向上突破了才买。再涨就再加仓。相反,在高位出现卖出信号,不存侥幸心理,坚决卖出。若看不清形势,先退出观望。
3,不用margin, 用了margin心里不踏实,影响操作。
4,大部分时间空仓,有机会就做,没机会耐心等。
5,买入前制定计划,研究操作方案,主要是要有逃跑方案。

其实,严格执行起来也不容易。经常是手痒,随意买入,结果就会出错。而止损也是常有犹豫,不够果断。

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