Skip to main content

新手如何做股票



新手做股票基本上就是烧钱买教训,但是少缴学费也是好的,毕竟是血汗钱,所以提供
以下几点建议

(1)市场基本常识: 比如知道股票是分类的,分类很有学问,新手要知道简单的分类
energy, material, industrial, consumer staple, consumer discretionary, heath
care, financial, technology, telecom, utility 这些sectors 有的是defensive(
通常和经济周期无关,pay dividend,比如utility),有些是cyclical(与经济周期相关,
经济好,长得快,经济差,跌得快,比如 industrial)

(2)有了基本常识后从简单入手,比如 DOW 30. 一共就30只蓝筹,好好消化就不错了,
比如说都属于什么sector,谁和谁都是一起走的等等

(3)练心理: 这个对新手最必要。找一只猛涨的股票,天天看,不久估计你就会有要买
的冲动,但是绝对不要买,直到你看得没感觉。再找一只猛跌的股票,天天看,如果有
反弹,估计不久你就会有买的冲动,一样绝对不买,直到没感觉。止损比较难练,通常
你要烧些钱才会长记性。不过如果你按照我说的只看DOW 30估计也不会烧太多

(4)想股票做的时间长,关键是不要犯不该犯的错误。这些错误包括:(a)投机,想一夜
暴富。不炒作垃圾股,消息股,除非你write them down from your account once you
buy them;(b)高仓位,all in all out all the time with only very few stocks;(
c)day trading;(d)margin, short expiry options;(e)想要抓bottom或者top等,还有
很多心理上的,自己体会

(5)推荐先做index ETF,对宏观了解了,再做个股

少赚不赚都不要紧,just relax

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