论坛全局菜单下方 - TICKMILL 285X70论坛全局菜单下方 - ThinkMarkets285X70论坛全局菜单下方 - 荔枝返现285X70论坛全局菜单下方 -  icmarkets285X70
  • 1
  • 2
前往
共 23 条
查看:2239回复:22
草龙
注册时间2004-12-17
[MT4指标]四色均线指标
楼主发表于:2014-03-27 11:03只看该作者倒序浏览
1楼 电梯直达
电梯直达
主图指标 mt4指标类型:趋势指标 是否能用在mt4手机版上:否 是否含有未来函数:无 一个指标里显示四条均线 简化添加指标的流程 //+------------------------------------------------------------------+ //| Four_MA_Ind.mq4 | //| Copyright ? 2006, Robert Hill | //| Written by Robert Hill with addition of LSMA MA_Mode 4 | //+------------------------------------------------------------------+ #property copyright "Copyright ? 2006, Robert Hill)" #property indicator_chart_window #property indicator_buffers 4 #property indicator_color1 Red #property indicator_color2 Green #property indicator_color3 Yellow #property indicator_color4 Aqua #property indicator_width1 1 #property indicator_width2 1 #property indicator_width3 1 #property indicator_width4 1 extern int MA_Period1 = 5; extern int MA_Mode1 = 1; //0=sma, 1=ema, 2=smma, 3=lwma, 4=lsma extern int PriceMode1 = 0;//0=close, 1=open, 2=high, 3=low, 4=median(high+low)/2, 5=typical(high+low+close)/3, 6=weighted(high+low+close+close)/4 extern int MA_Period2 = 10; extern int MA_Mode2 = 1; //0=sma, 1=ema, 2=smma, 3=lwma, 4=lsma extern int PriceMode2 = 0;//0=close, 1=open, 2=high, 3=low, 4=median(high+low)/2, 5=typical(high+low+close)/3, 6=weighted(high+low+close+close)/4 extern int MA_Period3 = 20; extern int MA_Mode3 = 1; //0=sma, 1=ema, 2=smma, 3=lwma, 4=lsma extern int PriceMode3 = 0;//0=close, 1=open, 2=high, 3=low, 4=median(high+low)/2, 5=typical(high+low+close)/3, 6=weighted(high+low+close+close)/4 extern int MA_Period4 = 30; extern int MA_Mode4 = 1; //0=sma, 1=ema, 2=smma, 3=lwma, 4=lsma extern int PriceMode4 = 0;//0=close, 1=open, 2=high, 3=low, 4=median(high+low)/2, 5=typical(high+low+close)/3, 6=weighted(high+low+close+close)/4 double MA1; double MA2; double MA3; double MA4; //+------------------------------------------------------------------+ //| Custom indicator initialization function | //+------------------------------------------------------------------+ int init() { //---- drawing settings SetIndexStyle(0,DRAW_LINE); SetIndexStyle(1,DRAW_LINE); SetIndexStyle(2,DRAW_LINE); SetIndexStyle(3,DRAW_LINE); SetIndexDrawBegin(0,MA_Period4); IndicatorDigits(MarketInfo(Symbol(),MODE_DIGITS)+2); //---- 3 indicator buffers mapping if(!SetIndexBuffer(0,MA1) && !SetIndexBuffer(1,MA2) && !SetIndexBuffer(2,MA3) && !SetIndexBuffer(3,MA4)) Print("cannot set indicator buffers!"); //---- initialization done //---- return(0); } //+------------------------------------------------------------------+ //| Custom indicator deinitialization function | //+------------------------------------------------------------------+ int deinit() { //---- //---- return(0); } //+------------------------------------------------------------------+ //| LSMA with PriceMode | //| PrMode 0=close, 1=open, 2=high, 3=low, 4=median(high+low)/2, | //| 5=typical(high+low+close)/3, 6=weighted(high+low+close+close)/4 | //+------------------------------------------------------------------+ double LSMA(int Rperiod, int prMode, int shift) { int i; double sum, pr; int length; double lengthvar; double tmp; double wt; length = Rperiod; sum = 0; for(i = length; i >= 1 ; i--) { lengthvar = length + 1; lengthvar /= 3; tmp = 0; switch (prMode) { case 0: pr = Close[length-i+shift];break; case 1: pr = Open[length-i+shift];break; case 2: pr = High[length-i+shift];break; case 3: pr = Low[length-i+shift];break; case 4: pr = (High[length-i+shift] + Low[length-i+shift])/2;break; case 5: pr = (High[length-i+shift] + Low[length-i+shift] + Close[length-i+shift])/3;break; case 6: pr = (High[length-i+shift] + Low[length-i+shift] + Close[length-i+shift] + Close[length-i+shift])/4;break; } tmp = ( i - lengthvar)*pr; sum+=tmp; } wt = sum*6/(length*(length+1)); return(wt); } //+------------------------------------------------------------------+ //| Custom indicator iteration function | //+------------------------------------------------------------------+ int start() { int limit, i; int counted_bars=IndicatorCounted(); //---- check for possible errors if(counted_bars<0) return(-1); //---- last counted bar will be recounted if(counted_bars>0) counted_bars--; limit=Bars-counted_bars; for(i = 0; i <= limit; i++) { if (MA_Mode1 == 4) { MA1 = LSMA(MA_Period1, PriceMode1, i); } else { MA1 = iMA(NULL, 0, MA_Period1, 0, MA_Mode1, PriceMode1, i); } if (MA_Mode2 == 4) { MA2 = LSMA(MA_Period2, PriceMode2, i); } else { MA2 = iMA(NULL, 0, MA_Period2, 0, MA_Mode2, PriceMode2, i); } if (MA_Mode3 == 4) { MA3 = LSMA(MA_Period3, PriceMode3, i); } else { MA3 = iMA(NULL, 0, MA_Period3, 0, MA_Mode3, PriceMode3, i); } if (MA_Mode4 == 4) { MA4 = LSMA(MA_Period4, PriceMode4, i); } else { MA4 = iMA(NULL, 0, MA_Period4, 0, MA_Mode4, PriceMode4, i); } } return(0); } Four_MA_Ind.jpgFour_MA_Ind.jpg
TK29帖子1楼右侧xm竖版广告90-240
个性签名

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

广告
TK30+TK31帖子一樓廣告
TK30+TK31帖子一樓廣告
befying
注册时间2012-11-14
紫竹青荷
注册时间2014-02-02
积极参与奖
发表于:2014-04-11 11:45只看该作者
3楼
谢谢分享。。。。
flyinglala
注册时间2015-04-18
softking
注册时间2014-09-20
发表于:2015-04-21 15:43只看该作者
5楼
直接用MT4上的4条均线不行啊?
tanqingyuye
注册时间2015-04-02
tanqingyuye
注册时间2015-04-02
发表于:2015-05-26 05:07只看该作者
7楼
看看再说
个性签名

韬客社区www.talkfx.co

xiaolichaoren
注册时间2015-05-22
HONGCHUN
注册时间2014-06-19
发表于:2015-06-25 04:26只看该作者
9楼
谢谢分享~!!!
三无男人
注册时间2015-05-18
zhangweihu
注册时间2015-06-28
发表于:2015-06-30 03:04只看该作者
11楼
惺惺相惜
rimonky
注册时间2014-11-29
发表于:2015-07-01 10:47只看该作者
12楼
感谢分享
个性签名

韬客社区www.talkfx.co

wsndhy
注册时间2015-07-06
发表于:2015-07-06 05:45只看该作者
13楼
啊啊啊啊啊啊啊啊啊啊
个性签名

韬客社区www.talkfx.co

广告
论坛谏言--外汇交易不应是你投资的全部,交易外汇也不应是你生活的全部
HONGCHUN
注册时间2014-06-19
酒肉
注册时间2015-12-02
发表于:2015-12-02 16:27只看该作者
15楼
为什么不能显示呢?调了半天后就显示一根红线,头疼啊
酒肉
注册时间2015-12-02
发表于:2015-12-03 01:47只看该作者
16楼
老大,在不? 我用的是香港第一金的mt4 为嘛复制代码后生成的指标不能用? 然后,想请教你个事,方便的话,回复我一下呗,谢谢了!
酒肉
注册时间2015-12-02
发表于:2015-12-03 01:54只看该作者
17楼
大佬啊,刚刚导入了,但是只有一根红线,没有四根,不知道为什么
laizz
注册时间2010-07-29
婆媳奥
注册时间2014-09-15
发表于:2016-02-25 02:27只看该作者
19楼
emoji-image
个性签名

韬客社区www.talkfx.co

广告
论坛谏言--外汇交易不应是你投资的全部,交易外汇也不应是你生活的全部
  • 1
  • 2
前往
共 23 条

本站免责声明:

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

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

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

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

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

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