比特币通信协议 - 币圈消息

比特币通信协议篇11、二、TURN简介。在典型的情况下,TURN客户端连接到内网中,并且通过一个或者多个NAT到 详细

12
返回列表 发新帖

求助老司机看看EA

  [复制链接]
11#
123321a 发表于 2016-6-13 20:57:00 | 只看该作者
没有细看代码,但是这个只是警告,不是错误,是可以运行的
12#
mao98 发表于 2016-6-13 20:57:57 | 只看该作者
还是有好人的。
13#
 楼主| geziyi 发表于 2016-6-13 20:14:00 | 只看该作者

我 一直认为大咖同时也大都是好人,目前仍在测试,小弟先作个揖!
14#
jwzhangsir 发表于 2016-6-14 10:35:05 | 只看该作者

搞错了,应该是一个等号
15#
 楼主| geziyi 发表于 2016-6-14 17:58:00 | 只看该作者

先谢谢哥了!加了那两句就没问题了。因为之前交易的预警到符合条件了就预警,而且波动一下就响一次,所以我照着前面那个阻力位的预警改了下,变成了60秒响一次。但是阻力位那个预警就有冲突了,好像是要在前一个预警之后,过7200秒才响一次,这样就不即时了。把7200秒那个去掉的话,就犯同样毛病了-------一直响不停。我觉得如果把这两种预警区别开,进出场的预警时间跟阻力位的预警时间互不干涉,应该就好了。不知道代码应该怎么改啊?
//+------------------------------------------------------------------+
//|                                                        ff_EA.mq4 |
//|                        Copyright 2016, MetaQuotes Software Corp. |
//|                                             https://www.mql5.com |
//+------------------------------------------------------------------+
#property copyright "Copyright 2016, MetaQuotes Software Corp."
#property link      "https://www.mql5.com"
#property version   "1.00"
#property strict
input double line_up=0.0012;
input double line_down=-0.0012;
input int MA1=60;
input int BOLL_period=25;
input int BOLL_dev=2;
input int InpFastEMA=12;   // Fast EMA Period
input int InpSlowEMA=26;   // Slow EMA Period
input int InpSignalSMA=9;  // Signal SMA Period
//+------------------------------------------------------------------+
//| Expert initialization function                                   |
//+------------------------------------------------------------------+
bool mark1; bool mark2; bool mark3; bool mark4,markup,markdown;
double uper,downer;
datetime marktime;
bool markinit;
int OnInit()
  {
//---
//---
   return(INIT_SUCCEEDED);
  }
//+------------------------------------------------------------------+
//| Expert deinitialization function                                 |
//+------------------------------------------------------------------+
void OnDeinit(const int reason)
  {
//---
  }
//+------------------------------------------------------------------+
//| Expert tick function                                             |
//+------------------------------------------------------------------+
void OnTick()
  {
      //iCustom()
      double coral=iCustom(NULL,0,"THV3 Coral",0,1);
      double ha_c=iCustom(NULL,0,"THV3 HA",3,1);
      double week=iCustom(NULL,0,"THV Visual_BT_Pivots V1.3",0,0);
      double ma=iMA(Symbol(),0,MA1,0,MODE_SMA,PRICE_CLOSE,1);
      double trix1=iCustom(NULL,0,"THV3 Trix v4.01 Div",0,1);
      double trix2=iCustom(NULL,0,"THV3 Trix v4.01 Div",2,1);
      double trix3=iCustom(NULL,0,"THV3 Trix v4.01 Div",1,1);
      double trix4=iCustom(NULL,0,"THV3 Trix v4.01 Div",3,1);
      double ww[7];
      ww[0]=ObjectGetDouble(0,"PivotLine",OBJPROP_PRICE1,0);
      ww[1]=ObjectGetDouble(0,"R1Line",OBJPROP_PRICE1,0);
      ww[2]=ObjectGetDouble(0,"R2Line",OBJPROP_PRICE1,0);
      ww[3]=ObjectGetDouble(0,"R3Line",OBJPROP_PRICE1,0);
      ww[4]=ObjectGetDouble(0,"S1Line",OBJPROP_PRICE1,0);
      ww[5]=ObjectGetDouble(0,"S2Line",OBJPROP_PRICE1,0);
      ww[6]=ObjectGetDouble(0,"S3Line",OBJPROP_PRICE1,0);
      double tempup=uper;
      double tempdown=downer;
      double minabs1=999;
      double minabs2=999;
      for(int i=0;iAsk && minabs1>=ww[i]-Ask)
               {
                  minabs1=ww[i]-Ask;
                  uper=ww[i];
               }
            if(ww[i][B]=Bid-ww[i])
               {
                  minabs2=Bid-ww[i];
                  downer=ww[i];
               }
         }
      if(tempup!=uper && tempup>0) markup=false;
      if(tempdown!=downer && tempdown>0) markdown=false;
      if(markup==false && Ask>uper-0.1*(uper-downer) && CurTime()-marktime>7200)
         {
            Alert("触上线: ", Ask, "  预警时间 :", TimeToString(CurTime()));
            SendMail("触上线","价格: "+ DoubleToString(Ask,Digits)+ "  预警时间 :"+TimeToString(CurTime()));
            markup=true;
            marktime=CurTime();
         }
      
      if(markdown==false && Bid7200)
         {
            Alert("触下线: ", Bid, "  预警时间 :", TimeToString(CurTime()));
            SendMail("触下线","价格: "+ DoubleToString(Bid,Digits)+ "  预警时间 :"+TimeToString(CurTime()));
            markdown=true;
            marktime=CurTime();
         }
      double macd1=iMACD(NULL,0,InpFastEMA,InpSlowEMA,InpSignalSMA,PRICE_CLOSE,MODE_MAIN,0);
      double boolline=iBands(NULL,0,BOLL_period,BOLL_dev,0,PRICE_CLOSE,MODE_SMA,0);
      //THV3 Coral
      //THV3 HA
      //THV3 Trix v4.01 Div
      double xxx=0,yyy=0;
      if(trix20) xxx=MathAbs(trix2-line_up);
      if(trix40) yyy=MathAbs(trix4-line_up);
      bool buytrend=false;
      if(ha_c>coral && ha_c>ma && trix1-1 && trix2-1 && xxx>0 && xxx0) buytrend=true;
      bool selltrend=false;
      if(ha_c-1 && trix4-1 && yyy>0 && yyy60)
         {
            Alert("买开价格: ", Ask, "  预警时间 :", TimeToString(CurTime()));
            SendMail("买开预警","买开价格: "+ DoubleToString(Ask,Digits)+ "  预警时间 :"+TimeToString(CurTime()));
            mark1=true;mark3=false;
            marktime=CurTime();
         }
      if(selltrend==true && mark2==false && CurTime()-marktime>60)
         {
            Alert("卖开价格: ", Bid, "  预警时间 :", TimeToString(CurTime()));
            SendMail("卖开价格","卖开价格: "+ DoubleToString(Bid,Digits)+ "  预警时间 :"+ TimeToString(CurTime()));
            mark2=true;mark4=false;
            marktime=CurTime();
         }
      if( (ha_c[b]boolline || ha_c>coral || ha_c>ma)) sellclose=true;   
      if(buyclose==true && mark3==false && CurTime()-marktime>60)
         {
            Alert("买平价格: ", Bid, "  预警时间 :", TimeToString(CurTime()));
            SendMail("买平价格: ","买平价格: "+ DoubleToString(Bid, Digits)+"  预警时间 :"+ TimeToString(CurTime()));
            mark3=true;
            buytrend=false;   mark1=false;
            marktime=CurTime();
         }
      if(sellclose==true && mark4==false && CurTime()-marktime>60)
         {
            Alert("卖平价格: ", Ask, "  预警时间 :", TimeToString(CurTime()));
            SendMail("卖平价格: ","卖平价格: "+ DoubleToString(Ask,Digits)+ "  预警时间 :"+TimeToString(CurTime()));
            mark4=true;
            selltrend=false;   mark2=false;
            marktime=CurTime();
         }
      string trend1="";  string trend2="";
      if(buytrend==true)   trend1="买单开仓状态";
      if(selltrend==true)   trend2="卖单开仓状态";
   Comment(trend1+trend2+"\n"+
      DoubleToString(ha_c,Digits) + "  " +DoubleToStr(boolline,Digits));
  }
//+------------------------------------------------------------------+
应该就是因为紫色和蓝色的time都是一个time,所以影响到红色的阻力位预警了
16#
luo007 发表于 2016-6-14 11:08:10 | 只看该作者
有高手!!!
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝1

帖子1

发布主题
阅读排行更多+

Powered by 顺水鱼MT4外汇EA网! X3.2© 2001-2017 顺水MT4外汇EA公司.( 陕ICP备17014341号-1