论坛全局菜单下方 - TICKMILL 285X70论坛全局菜单下方 - ThinkMarkets285X70论坛全局菜单下方 - 荔枝返现285X70论坛全局菜单下方 -  icmarkets285X70
查看:1239回复:7
草龙
注册时间2004-12-17
[MT4指标]cci交叉指标
楼主发表于:2014-10-06 01:46只看该作者倒序浏览
1楼 电梯直达
电梯直达
附图指标,cci交叉指标 mt4指标类型:趋势指标 是否能用在mt4手机版上:否 是否含有未来函数:无 //+------------------------------------------------------------------+ //| CCI_Cross.mq4 | //| Copyright ? 2006, Eli Hayun | //| http://www.elihayun.com | //+------------------------------------------------------------------+ #property copyright \"Copyright ? 2006, Eli Hayun\" #property link \"http://www.elihayun.com\" #property indicator_chart_window #property indicator_buffers 6 #property indicator_color1 Red// Kleurloos #property indicator_color2 DodgerBlue//Kleurloos #property indicator_color3 Red//DodgerBlue #property indicator_color4 Red #property indicator_color5 DodgerBlue//Kleurloos #property indicator_color6 Red//Kleurloos //---- input parameters extern int FastCCI=25; extern int SlowCCI=50; extern int VerySlowCCI=50; //---- buffers double ExtMapBuffer1; double ExtMapBuffer2; double ExtMapBuffer3; double ExtMapBuffer4; double ExtMapBuffer5; double ExtMapBuffer6; //+------------------------------------------------------------------+ //| Custom indicator initialization function | //+------------------------------------------------------------------+ int init() { //---- indicators SetIndexStyle(0,DRAW_ARROW,STYLE_SOLID, 2); SetIndexArrow(0,217); SetIndexBuffer(0,ExtMapBuffer1); SetIndexEmptyValue(0,0.0); SetIndexStyle(1,DRAW_ARROW,STYLE_SOLID, 2); SetIndexArrow(1,218); SetIndexBuffer(1,ExtMapBuffer2); SetIndexEmptyValue(1,0.0); SetIndexStyle(2,DRAW_ARROW,STYLE_SOLID, 2); SetIndexArrow(2,233); SetIndexBuffer(2,ExtMapBuffer3); SetIndexEmptyValue(2,0.0); SetIndexStyle(3,DRAW_NONE); SetIndexArrow(3,234); SetIndexBuffer(3,ExtMapBuffer4); SetIndexEmptyValue(3,0.0); SetIndexStyle(4,DRAW_ARROW); SetIndexArrow(4,241); SetIndexBuffer(4,ExtMapBuffer5); SetIndexEmptyValue(4,0.0); SetIndexStyle(5,DRAW_ARROW); SetIndexArrow(5,242); SetIndexBuffer(5,ExtMapBuffer6); SetIndexEmptyValue(5,0.0); //---- return(0); } //+------------------------------------------------------------------+ //| Custom indicator deinitialization function | //+------------------------------------------------------------------+ int deinit() { //---- //---- return(0); } //+------------------------------------------------------------------+ //| Custom indicator iteration function | //+------------------------------------------------------------------+ int start() { int shift; for(shift=Bars-1;shift>=0;shift--) { ExtMapBuffer1[shift] = 0; ExtMapBuffer2[shift] = 0; ExtMapBuffer3[shift] = 0; ExtMapBuffer4[shift] = 0; ExtMapBuffer5[shift] = 0; ExtMapBuffer6[shift] = 0; double fCCI_0 = iCCI(NULL, 0, FastCCI, PRICE_TYPICAL, shift); double fCCI_1 = iCCI(NULL, 0, FastCCI, PRICE_TYPICAL, shift+1); double fCCI_2 = iCCI(NULL, 0, FastCCI, PRICE_TYPICAL, shift+2); if (fCCI_0 > 0 && fCCI_1<0 && fCCI_2 < 0) ExtMapBuffer1[shift] = Low[shift] - 3 * Point; if (fCCI_0 < 0 && fCCI_1>0 && fCCI_2 > 0) ExtMapBuffer2[shift] = High[shift] + 3 * Point; double sCCI_0 = iCCI(NULL, 0, SlowCCI, PRICE_TYPICAL, shift); double sCCI_1 = iCCI(NULL, 0, SlowCCI, PRICE_TYPICAL, shift+1); double sCCI_2 = iCCI(NULL, 0, SlowCCI, PRICE_TYPICAL, shift+2); if (sCCI_0 > 0 && sCCI_1<0 && sCCI_2 < 0) ExtMapBuffer3[shift] = Low[shift] - 4 * Point; if (sCCI_0 < 0 && sCCI_1>0 && sCCI_2 > 0) ExtMapBuffer4[shift] = High[shift] + 4 * Point; double vsCCI_0 = iCCI(NULL, 0, VerySlowCCI, PRICE_TYPICAL, shift); double vsCCI_1 = iCCI(NULL, 0, VerySlowCCI, PRICE_TYPICAL, shift+1); double vsCCI_2 = iCCI(NULL, 0, VerySlowCCI, PRICE_TYPICAL, shift+2); if (vsCCI_0 > 0 && vsCCI_1<0 && vsCCI_2 < 0) ExtMapBuffer5[shift] = Low[shift] - 5 * Point; if (vsCCI_0 < 0 && vsCCI_1>0 && vsCCI_2 > 0) ExtMapBuffer6[shift] = High[shift] + 5 * Point; } string sComment = \"\"; if (ExtMapBuffer1[0] != 0) sComment = sComment + \" 1st UP\"; if (ExtMapBuffer2[0] != 0) sComment = sComment + \" 1st Down\"; if (ExtMapBuffer3[0] != 0) sComment = sComment + \" 2nd UP\"; if (ExtMapBuffer4[0] != 0) sComment = sComment + \" 2nd Down\"; if (ExtMapBuffer5[0] != 0) sComment = sComment + \" 3rd UP\"; if (ExtMapBuffer6[0] != 0) sComment = sComment + \" 3rd Down\"; if ((sComment != \"\") && (!IsTesting())) { if (NewBar()) { PlaySound(\"expert.wav\"); Print(Symbol(), \" \", sComment); } Comment(TimeToStr(CurTime()), \" \", sComment); } if ((sComment == \"\") && (!IsTesting())) { Comment(\"\"); } return(0); } //+------------------------------------------------------------------+ bool NewBar() { static datetime dt = 0; //if (dt == 0) dt = Time[0]; if (dt != Time[0]) { dt = Time[0]; return(true); } return(false); }
TK29帖子1楼右侧xm竖版广告90-240
个性签名

阅尽天下指标
搬砖开始,始于2014

广告
TK30+TK31帖子一樓廣告
TK30+TK31帖子一樓廣告
guoyoz
注册时间2014-07-26
发表于:2014-11-23 13:40只看该作者
2楼
谢谢分享
个性签名

韬客社区www.talkfx.co

广告
论坛谏言--外汇交易不应是你投资的全部,交易外汇也不应是你生活的全部
紫竹青荷
注册时间2014-02-02
积极参与奖
发表于:2014-11-23 15:59只看该作者
3楼
有个图看看最好。。。
luomadadao
注册时间2014-12-15
发表于:2014-12-15 06:08只看该作者
4楼
谢谢分享 可惜看不懂代码 哈哈
隐形人w
注册时间2014-12-18
发表于:2014-12-20 08:39只看该作者
5楼
谢谢分享 可惜不知道怎么把代码导入emoji-image
rfvedc
注册时间2014-12-26
xiaoxiaowww
注册时间2015-01-03
发表于:2015-01-05 13:36只看该作者
7楼
很不错的样子~谢谢楼主~
tjxr
注册时间2015-02-16

本站免责声明:

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

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

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

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

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

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