3赞

273评论

25收藏

3均线交叉信号指标

 

评论|共 273 个

nbmcuj

发表于 2020-1-24 12:00:41 | 显示全部楼层

TRFUFTRUJTFYJTFYU

夕夕

发表于 2020-1-24 12:14:08 | 显示全部楼层

谢谢提供!!!!!

qy1974810

发表于 2020-1-24 12:53:45 | 显示全部楼层

kkkkkkkkkkkkkkkkk

liesli

发表于 2020-2-2 12:51:39 | 显示全部楼层

1111111111111111

卧龙凤雏

发表于 2020-2-2 13:22:10 | 显示全部楼层

谢谢分享!

ethan829

发表于 2020-2-2 22:10:05 | 显示全部楼层

均线参数是多少

tmwzg

发表于 2020-2-2 22:51:49 | 显示全部楼层

3均线交叉信号指标

绝世无双

发表于 2020-2-3 09:24:32 | 显示全部楼层

谢谢分享!!!

死脑筋

发表于 2020-2-3 09:31:52 | 显示全部楼层

好流通开个户  

sdaassdasda

发表于 2020-2-4 01:58:31 | 显示全部楼层

好担心//+------------------------------------------------------------------+ //| MA 交叉报警.mq4 | //| Copyright 2012, MetaQuotes Software Corp. | //| http://www.metaquotes.net | //+------------------------------------------------------------------+ #property indicator_chart_window #property indicator_buffers 2 #property indicator_color1 Red #property indicator_color2 Red //---- buffers double buy[],sell[];  extern int fast=20; extern int slow=50; double LastAlertTime=0; //+------------------------------------------------------------------+ //| Custom indicator initialization function | //+------------------------------------------------------------------+ int init()  { //---- indicators  SetIndexStyle(0,DRAW_ARROW);  SetIndexArrow(0,233);  SetIndexBuffer(0,buy);  SetIndexEmptyValue(0,0.0);  SetIndexStyle(1,DRAW_ARROW);  SetIndexArrow(1,234);
&#65279; SetIndexBuffer(1,sell);  SetIndexEmptyValue(1,0.0);  //----  return(0);  } //+------------------------------------------------------------------+ //| Custor indicator deinitialization function | //+------------------------------------------------------------------+ int deinit()  { //----  //----  return(0);  } //+------------------------------------------------------------------+ //| Custom indicator iteration function | //+------------------------------------------------------------------+ int start()  {  //---- for (int i=Bars-1;i>=0;i--) {  if  (  (  iMA(NULL,0,fast,0,MODE_EMA,PRICE_CLOSE,i)<iMA(NULL,0,slow,0,MODE_EMA,PRICE_CLOSE,i)  && iMA(NULL,0,fast,0,MODE_EMA,PRICE_CLOSE,i+1)>iMA(NULL,0,slow,0,MODE_EMA,PRICE_CLOSE,i+1)  )  )  {  sell[i]=High[i]+2*Point;  if (i==1 && LastAlertTime!=Time[0])  {  Alert("Negative Cross");  LastAlertTime=Time[0];  }  
&#65279; }   if  (  (  iMA(NULL,0,fast,0,MODE_EMA,PRICE_CLOSE,i)>iMA(NULL,0,slow,0,MODE_EMA,PRICE_CLOSE,i)  && iMA(NULL,0,fast,0,MODE_EMA,PRICE_CLOSE,i+1)<iMA(NULL,0,slow,0,MODE_EMA,PRICE_CLOSE,i+1)  )  )  {  buy[i]=Low[i]-2*Point;  if (i==1 && LastAlertTime!=Time[0])  {  Alert("Positive Cross");  LastAlertTime=Time[0];  }  }    } //----  return(0);  } //+------------------------------------------------------------------+

您需要登录后才可以回帖 登录 | 注册 微信登录

EA之家评论守则