缠中说禅 指标公式(Zen formula)_第1页
缠中说禅 指标公式(Zen formula)_第2页
缠中说禅 指标公式(Zen formula)_第3页
缠中说禅 指标公式(Zen formula)_第4页
缠中说禅 指标公式(Zen formula)_第5页
已阅读5页,还剩13页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、缠中说禅 指标公式(Zen formula)Zen index formula (2009-04-18 18:31:40) said unwrapping reproduced soTags: technical analysis stock classification: index formulaSaying Zen in ChineseMa5:ma (C, 5);Ma13:ma (C, 13);Ma21:ma (C, 21);Ma34:ma (C, 34);Ma55:ma (C, 55);Ma89:ma (C, 89);Ma144:ma (C, 144);Ma233:ma (C, 233

2、);Tmp1:=if (cma5,1,0);Tmp2:=if (cma13,1,0);Tmp3:=if (cma21,1,0);Tmp4:=if (cma34,1,0);Tmp5:=if (cma55,1,0);Tmp6:=if (cma89,1,0);Tmp7:=if (cma144,1,0);Tmp8:=if (cma233,1,0);Category: tmp1+tmp2+tmp3+tmp4+tmp5+tmp6+tmp7+tmp8+1, linethick0;DRAWTEXTEX (1,1,0,0, class+NUMTOSTR (category, 0), LINETHICK1, Co

3、lor00ffff;Moving average, wheel movement and twist, say Zen plate strength indicatorFormula theory:To rebound as an example, this section, as long as the adjustment is in the opposite direction.At any given level, have the least time extension, for example, a pen, because there must be the top and b

4、ottom of the type, therefore, must be extended at least 6 basic K units, that is to say, if the 5 lines are not met, it is not the pen of the rebound. By the same token, you can give line, 1, 5, 30, day, week and other levels, the least extension time, and the corresponding minimum challenge moving

5、average.Thus, the trend level and moving average, although there is no necessary relationship, but there is still a broad range corresponding. In particular, according to the experience of a trend in N central corresponding repression average are approximately the same, for example, the first centra

6、l is the 89 day moving average to suppress the central, subsequent behind that same trend, is likely to be the same average to suppress. If there is a rebound that can only reach the 34 line, then the probability of the same level as the first center is very small.In addition to the simplest pen, an

7、y trend is a large set of small level, and therefore, simply a moving average is of little significance, must be moving average system.Attention, the average system settings, must be based on the actual trend, that is, you set the average system, and must be consistent with the actual trend. For exa

8、mple, from 6124 points down, we choose 5, 13, 21, 34, 55, 89, 144, 233, the parameters constitute the average system, you can see, the system is completely consistent with the trend of the extreme.For example, 4778 points (torrent note: 071128 low 4778.73)? ) is the 233 day moving average support, f

9、ollowed by a bull trap in the 55 and 89 day moving average, the decline has been subject to the 21 day moving average until 3000, and the subsequent rebound was 55 average precision then decline, has been suppressed, until in the 13 day moving average under the rebound.The system is very consistent

10、with the trend of the trend, and in the back of the trend has not changed greatly, of course, can continue to use. Thus, 55 days (89 days will soon and winding) is the rebound in real touchstone, if not break even cannot be touched, means that the rebound level is still not big enough, is likely to

11、try again after the other classes together constitute a much greater level of rebound. And the short line, the 34 line is a very practical test.With this system, you can give a complete classification to determine the strength and order of the trend. Of course, simply looking at the index is not the

12、 most useful part of the classification, which is the use of a single breed. We can also use the key to Tasikmalaya on all stocks, according to this classification, the rhythm of moving round the market at a glance.The principle of classification is the smallest periodic average that has not been ov

13、ercome so far, so the 8 moving averages can be divided into 9 categories, the worst of which is, of course, entirely at all moving averages. Note that the worst isnt necessarily above all averages. Why? (you dont think about it, all the answers are dependent on the ID, a reflection effect than ID sa

14、id the 1000 answer is better.)For each class in the class N stock once adjusted to N+1, at least for quite a long time to toss, so this will give a round to choose the best move, once a trend trend appeared in the top level divergence on the N class, you can first come out, at least a few days when

15、Touhuan can go to other already adjusted can start a stock or compensatory growth.There is a more important, is to be judged according to the plate, the plate strength is very simple, is the average number of categories, the more strong, and the average number of categories can be called Zen plate w

16、rapped in strength index.The strongest plate belongs to the dynamic of the plate led the plate, it is critical that, in addition, to all sectors of the energy-saving plate strength index listed in a chart, the round of the order and rhythm clear, according to the analysis of this trend and with spec

17、ific stocks to,The wheel action is, of course, very simple.Hundred years per person dynamic percentage formula source!A1:=hhv (h, 256);A2:=llv (L, 256);M1:ma (C, 64);M2:ma (C, 256);K1: (0.618*a1+0.382*a2);K2: (0.5*a1+0.5*a2);K3: (0.382*a1+0.618*a2);Explain:Code description1 a1:=hhv (h, 256); the hig

18、hest price between 256 units of a cycle.2 a2:=llv (L, 256); the lowest price between 256 units of a cycle3 m1:ma (C, 64); average unit price of 64 cycles;4 m2:ma (C, 256); average unit price of 256 cycles;5k1: (0.618*a1+0.382*a2); the 0.618 position in the 256 cycle;6k2: (0.5*a1+0.5*a2); the 1/2 pos

19、ition in the 256 cycle;7k3: (0.382*a1+0.618*a2); the 1/2 position in the 256 cycle;Two matters needing attention1, the formula is suitable for most programming functions of the software, copy source code in the past can generally pass!2, when copying, pay attention to give the program a name you lik

20、e to pass.3, M1, M2 you can delete, this is a double moving average, at the same time, and the percentage can be placed in the master chart, so that is not to separate to another interface to see the moving average;It is recommended that the master graph use this percentage of the moving average as

21、good.4 some software does not allow the use of a1=a1:=hhv (h, 256), and is not allowed to write directly with variables. Then the A1 in the formula is written directly;Source code is as follows:M1:ma (C, 64);M2:ma (C, 256);K1: (0.618*hhv (high, 256) +0.382*llv (low, 256);K2: (0.5*hhv (high, 256) +0.

22、5*llv (low, 256);K3: (0.382*hhv (high, 256) +0.618*llv (low, 256);This source applies to all software!5 how to test through: as shown in the software to find this interface. When you get a good name, select the master map, and then pass the test, then you can show it in the main diagram by index nam

23、eThree some skillsThe average crossing between the 1 moving averages and the percentages tends to produce accurate trading points.2 moving average and percentage settings at the same interface, convenient and fast, it is recommended that the main map with this indicator, as far as possible not to sw

24、itch.3 change the cycle of 256, such as changing to other cycles, to show the percentage of the period you set. Such as: a1:=Hhv (h, 0), which means the highest historical price;4 lines of color and thickness can also be adjusted. Make the interface more beautiful.5 you can design more percentages t

25、hat you think are important according to this principle. The percentage is just my personal preference.One hundred double double moving average in 8 cases1, cycle (256 antenna) to small cycle 256 line upward, small cycle 64 fork small cycle line 256, the real point is to accelerate the macd.2, big c

26、ycle (256 antenna) upward: small cycle, 256 lines down, small cycle 64, fork, small cycle, 256 lines. Can only be crossed, little significance.3, big cycle (256 antenna) upward: small cycle, 256 line up, small cycle, 64 lines, fork 256 lines. Can only be crossed, little significance.4, big cycle (25

27、6 antenna) upward: small cycle, 256 lines down, small cycle, 64 lines, fork 256 lines. Sicha. Buy some.5, big cycle (256 antennas) down: small cycle, 256 line up, small cycle 64, online fork 256 line, canteen, of little significance.6, big cycle (256 antennas) down: small cycle, 256 lines down, smal

28、l cycle 64 line up, fork 256 line, selling point.7, big cycle (256 line days) down: small cycle, 256 line up, small cycle, 64 lines down, fork 256 line, buy small8, big cycle (256 antennas) down: small cycle, 256 lines down, small 64 line, down the fork 256 lines, buy some.watercb essays: views on t

29、he Centennial percentage line of TeachersEssay: views on the hundred percent teachers dynamic percentage lineI. admireThe dynamic percentage line seen hundreds of years for the teacher, have seen many peoples comments, it seems not very convincing, I also do not understand, do not think what, as of

30、this time, one hundred years the teacher found more and more fierce, it should be a sentence, the truth is very simple, can be found very little really the truth.Two, I understand the dynamic percentage1, escape point understandingRemember the teacher said January 22nd is a hundred years away, I hav

31、e been thinking according to where, through the dynamic percentage line and I think I know one hundred years of the teachers meaning, at least on this day, can divide as bull and bear, on the day the stock fell below the K1 line, and the effective below.2, the discovery of stage lowsThrough the dyna

32、mic percentage, you can also see the decline in the process of each rebound low, and is so accurate, we can see that the percentage line down, down when it is a low point.3, pressure supportThe dynamic percentage lines give us such explicit instructions as pressure and support,We need to do is to ri

33、de.Three, brilliant thinking1, the formula is simpleDynamic percentage formula is very simple, but the thought is very deep, the more I think more reasonable, I think a hundred years of teacher confirmation system, there will be similar dynamic percentage formula this figure.2, a hundred years, the

34、teacher opened, it does not work?I think a hundred years since the teacher opened it, it is not afraid that it will fail, what is the reason, I think the teacher told us a hundred years to observe the stock market approach and angle, and this and real confirmation intervention is still different. So

35、 dont worry, people will misuse it, and thats the difference between the following system and the prediction system.3, along the road of a hundred teachers forwardThis thought something elusive, but withstand the test of time formula, such as the dynamic percentage formula like, it is thought to ref

36、lect, to not know what to say with the formula to express the hundred years teacher skill, now really is not far behind, as some people do for the formula formula.4, not to encourage everyone to write formulasIt said so much, not to encourage people to write a formula, but to all of hundred years of

37、 teacher learning attitude, learn seriously in our stock market, the only way to have their own harvest along the way.One hundred years, 9.21 people in 2008-The original post published by CERA0501 in 2008-12-11 22:02Recent market, the use of a hundred years of teacher dynamic percentage and double m

38、oving average, you can find excellent short-term buyIn the 15 minute cycle, 256 line upward trend, the 64 line to 256 line crossing,If the stock price is at the 0.618 or 0.5 line of the dynamic percentage line, then buy for a short time,Short term profit 5-10 point opportunities are very large. I do

39、 not know my total.Answer: not only can make up, but also is the simplest, after making up, but also can realize the automatic warning.Programming:The main drawing is superimposed for 15 minutesMA1:MA (CLOSE, 64);MA2:MA (CLOSE, 256);DRAWICON (CROSS (MA1, MA2), MA1*0.98,1);Stock selection formula:MA1

40、:=MA (CLOSE, 64);MA2:=MA (CLOSE, 256);Out:CROSS (MA1, MA2);DRAWTEXTREL (0,15, extrastring ( rating ), COLOR00FF00;EMA7:EMA (C, 7), COLOR00FF00;EMA14:EMA (C, 14), COLORWHITE;EMA21:EMA (C, 21), COLORYELLOW;ZMA7:EMA (C, 35), COLORFF00FF;ZMA14:EMA (C, 70), COLORFFCCCC;ZMA34:EMA (C, 170), COLORFFCC66;VV1

41、:=EMA (C, 35), EMA (C, 70), AND, EMA (C, 35), EMA (C, 170), AND, EMA (C, 170), REF (EMA (C, 170), 1);VV2:=VV1, AND, CROSS (EMA (C, 70), EMA (C, 170);DRAWICON (VV2, L-0.10,1), ALIGN1; double crossing signal No. 1 red icon, centerDRAWTEXT (VV2, L-0.40, double crossing), COLORWHITE, ALIGN1; display double across text, centeredVV3:=EMA (C, 35), EMA (C, 170), AND, EMA (C, 70),

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论