论坛全局菜单下方 - TICKMILL 285X70论坛全局菜单下方 - ThinkMarkets285X70论坛全局菜单下方 - 荔枝返现285X70论坛全局菜单下方 -  icmarkets285X70
帖子
作者
回复/查看
最后发表
2005-07-31 23:41
15
8542
2016-12-07 10:16
2005-06-14 07:55
31
14469
2018-09-02 11:35
2008-09-26 16:28
2005-02-16 05:33
70
22737
2016-05-14 03:20
//+------------------------------------------------------------------+ //| 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
2008-09-26 15:33
2005-11-29 04:35
156
62851
2015-09-04 09:58
2008-07-04 08:49
13
2998
2017-08-08 09:09
2008-04-13 05:44
109
32595
2021-08-24 01:51

本站免责声明:

1、本站所有广告及宣传信息均与韬客无关,如需投资请依法自行决定是否投资、斟酌资金安全及交易亏损风险;

2、韬客是独立的、仅为投资者提供交流的平台,网友发布信息不代表韬客的观点与意思表示,所有因网友发布的信息而造成的任何法律后果、风险与责任,均与韬客无关;

3、金融交易存在极高法律风险,未必适合所有投资者,请不要轻信任何高额投资收益的诱导而贸然投资;投资保证金交易导致的损失可能超过您投入的资金和预期。请您考虑自身的投资经验及风险承担能力,进行合法、理性投资;

4、所有投资者的交易帐户应仅限本人使用,不应交由第三方操作,对于任何接受第三方喊单、操盘、理财等操作的投资和交易,由此导致的任何风险、亏损及责任由投资者个人自行承担;

5、韬客不隶属于任何券商平台,亦不受任何第三方控制,韬客不邀约客户投资任何保证金交易,不接触亦不涉及投资者的任何资金及账户信息,不代理任何交易操盘行为,不向客户推荐任何券商平台,亦不存在其他任何推荐行为。投资者应自行选择券商平台,券商平台的任何行为均与韬客无关。投资者注册及使用韬客即表示其接受和认可上述声明,并自行承担法律风险。

版权所有:韬客外汇论坛 www.talkfx.com 联络我们:[email protected]