发表于:2007-05-06 15:48只看该作者
43楼
谢谢
韬客社区www.talkfx.co
发表于:2007-05-12 13:26只看该作者
44楼
感谢老正版主,感谢raidsan ,还有所有编译指标的朋友。
韬客社区www.talkfx.co
发表于:2007-06-07 19:04只看该作者
46楼
谢谢分享,我正需要。
韬客社区www.talkfx.co
发表于:2007-11-22 04:18只看该作者
47楼
上面所有的代码都试了,都和mt4自带的kd数据不同
韬客社区www.talkfx.co
发表于:2007-12-04 02:25只看该作者
48楼
感谢老正版主
看了楼主的好多帖子,就明白了,再次感谢楼主
韬客社区www.talkfx.co
发表于:2007-12-05 04:59只看该作者
49楼
加分,加分!!!加分,加分!!!
韬客社区www.talkfx.co
发表于:2007-12-07 02:56只看该作者
50楼
谢谢版主!谢谢各位汇友!
缘起无自性,一切法无我。
发表于:2008-04-25 14:10只看该作者
51楼
太感谢了,在论坛上看到很多人在用KDJ,自己还没用过,正好需要~~~
发表于:2008-05-03 09:22只看该作者
52楼
好厉害
韬客社区www.talkfx.co
发表于:2008-05-03 13:05只看该作者
53楼
非常感谢搂主和老正。
发表于:2008-06-12 12:23只看该作者
54楼
谢谢各位了
韬客社区www.talkfx.co
发表于:2008-09-26 15:33只看该作者
56楼
//+------------------------------------------------------------------+ //| KDJ.mq4 | //| Copyright 2006, raidsan. | //| http://www.metaquotes.net | //+------------------------------------------------------------------+ #property indicator_separate_window #property indicator_buffers 3 #property indicator_color1 White #property indicator_color2 Yellow #property indicator_color3 Magenta //---- input parameters extern int NPeriod=9; extern int KPeriod=3; extern int DPeriod=3; double RSV; double KBuffer; double DBuffer; double JBuffer; double HighesBuffer; double LowesBuffer; int draw_begin_K = 0; int draw_begin_D = 0; //+------------------------------------------------------------------+ //| expert initialization function | //+------------------------------------------------------------------+ int init() { string short_name; //---- 2 additional buffers are used for counting. IndicatorBuffers(6); SetIndexBuffer(4, HighesBuffer); SetIndexBuffer(5, LowesBuffer); SetIndexBuffer(3, RSV); //---- indicator lines SetIndexStyle(0,DRAW_LINE); SetIndexBuffer(0, KBuffer); //k SetIndexStyle(1,DRAW_LINE); SetIndexBuffer(1, DBuffer); //d SetIndexStyle(2,DRAW_LINE); SetIndexBuffer(2, JBuffer); //j //---- name for DataWindow and indicator subwindow label string shortname = "KDJ("+NPeriod+","+KPeriod+","+DPeriod+")"; IndicatorShortName(shortname); SetIndexLabel(0,"K"); SetIndexLabel(1,"D"); SetIndexLabel(2,"J"); SetLevelValue(0,0); SetLevelValue(1,20); SetLevelValue(2,50); SetLevelValue(3,80); SetLevelValue(4,100); //---- draw_begin_K = NPeriod+KPeriod; draw_begin_D = draw_begin_K+DPeriod; SetIndexDrawBegin(0,draw_begin_K); SetIndexDrawBegin(1,draw_begin_D); SetIndexDrawBegin(2,draw_begin_D); SetIndexEmptyValue(0,0); SetIndexEmptyValue(1,0); SetIndexEmptyValue(2,0); return(0); } //+------------------------------------------------------------------+ //| expert deinitialization function | //+------------------------------------------------------------------+ int start() { int i,k; int counted_bars=IndicatorCounted(); double price; //---- if(Bars<=NPeriod) return(0); //---- initial zero if(counted_bars<1) { for(i=1;i<=draw_begin_K;i++) KBuffer[Bars-i]=0; for(i=1;i<=draw_begin_D;i++) DBuffer[Bars-i]=0; for(i=1;i<=draw_begin_D;i++) JBuffer[Bars-i]=0; } //---- minimums counting i=Bars-NPeriod; if(counted_bars>NPeriod) i=Bars-counted_bars-1; while(i>=0) { double min=1000000; k=i+NPeriod-1; while(k>=i) { price=Low[k]; if(min>price) min=price; k--; } LowesBuffer=min; i--; } //---- maximums counting i=Bars-NPeriod; if(counted_bars>NPeriod) i=Bars-counted_bars-1; while(i>=0) { double max=-1000000; k=i+NPeriod-1; while(k>=i) { price=High[k]; if(max韬客社区www.talkfx.co
发表于:2008-10-15 06:59只看该作者
57楼
感谢各位的提供
谢谢
韬客社区www.talkfx.co
发表于:2009-03-18 03:03只看该作者
58楼
没钱下载了,赚点几分
支持了。。。
韬客社区www.talkfx.co
发表于:2010-11-27 13:26只看该作者
60楼
顶!!!!!!
韬客社区www.talkfx.co