보조지표 게시글

ColorX2MA_Alert: 메타트레이더 5용 경고 지표 소개

첨부파일
16477.zip (22.84 KB, 다운로드 0회)

ColorX2MA 지표는 알림 기능이 포함되어 있어, 이메일 및 모바일 기기로 푸시 알림을 전송할 수 있습니다.

경고, 이메일 메시지 및 푸시 알림 기능을 구현하기 위해 지표 코드에 다음과 같은 변경 사항이 적용되었습니다:

  1. 새로운 입력 매개변수를 도입했습니다.
    //---- 알림을 위한 입력 변수
    input uint NumberofBar=1;// 신호를 위한 바 번호
    input bool SoundON=true;// 알림 활성화
    input uint NumberofAlerts=2;// 알림 수
    input bool EMailON=false;// 신호 이메일 전송 활성화
    input bool PushON=false;// 모바일 기기로 신호 전송 활성화
    
  2. 지표 코드의 마지막 부분에 세 가지 새로운 함수를 추가했습니다: BuySignal(), SellSignal() 및 GetStringTimeframe()
    //+------------------------------------------------------------------+
    //| 매수 신호 함수                                              |
    //+------------------------------------------------------------------+
    void BuySignal(string SignalSirname,// 이메일 및 푸시 메시지를 위한 지표 이름 텍스트
          double &ColorArray[],// 색상 인덱스 버퍼
          int ColorIndex,// 신호 생성을 위한 색상 인덱스
          const int Rates_total,// 현재 바 수
          const int Prev_calculated,// 이전 틱의 바 수
          const double &Close[],// 종가
          const int &Spread[])// 스프레드
      {
    //---
       static uint counter=0;
       if(Rates_total!=Prev_calculated) counter=0;
    
       bool BuySignal=false;
       bool SeriesTest=ArrayGetAsSeries(ColorArray);
       int index,index1;
       if(SeriesTest)
         {
          index=int(NumberofBar);
          index1=index+1;
        }
       else
         {
          index=Rates_total-int(NumberofBar)-1;
          index1=index-1;
        }
       if(ColorArray[index1]!=ColorIndex && ColorArray[index]==ColorIndex) BuySignal=true;
       if(BuySignal && counter<=NumberofAlerts)
         {
          counter++;
          MqlDateTime tm;
          TimeToStruct(TimeCurrent(),tm);
          string text=TimeToString(TimeCurrent(),TIME_DATE)+" "+string(tm.hour)+":"+string(tm.min);
          SeriesTest=ArrayGetAsSeries(Close);
          if(SeriesTest) index=int(NumberofBar);
          else index=Rates_total-int(NumberofBar)-1;
          double Ask=Close[index];
          double Bid=Close[index];
          SeriesTest=ArrayGetAsSeries(Spread);
          if(SeriesTest) index=int(NumberofBar);
          else index=Rates_total-int(NumberofBar)-1;
          Bid+=Spread[index];
          string sAsk=DoubleToString(Ask,_Digits);
          string sBid=DoubleToString(Bid,_Digits);
          string sPeriod=GetStringTimeframe(ChartPeriod());
          if(SoundON) Alert("BUY 신호 
     Ask=",Ask,"
     Bid=",Bid,"
     currtime=",text,"
     Symbol=",Symbol()," Period=",sPeriod);
          if(EMailON) SendMail(SignalSirname+": BUY 신호 알림","BUY 신호 at Ask="+sAsk+", Bid="+sBid+", Date="+text+" Symbol="+Symbol()+" Period="+sPeriod);
          if(PushON) SendNotification(SignalSirname+": BUY 신호 at Ask="+sAsk+", Bid="+sBid+", Date="+text+" Symbol="+Symbol()+" Period="+sPeriod);
         }
    
    //---
      }
    //+------------------------------------------------------------------+
    //| 매도 신호 함수                                             |
    //+------------------------------------------------------------------+
    void SellSignal(string SignalSirname,// 이메일 및 푸시 메시지를 위한 지표 이름 텍스트
          double &ColorArray[],// 색상 인덱스 버퍼
          int ColorIndex,// 신호 생성을 위한 색상 인덱스
          const int Rates_total,// 현재 바 수
          const int Prev_calculated,// 이전 틱의 바 수
          const double &Close[],// 종가
          const int &Spread[])// 스프레드
      {
    //---
       static uint counter=0;
       if(Rates_total!=Prev_calculated) counter=0;
    
       bool SellSignal=false;
       bool SeriesTest=ArrayGetAsSeries(ColorArray);
       int index,index1;
       if(SeriesTest)
         {
          index=int(NumberofBar);
          index1=index+1;
        }
       else
         {
          index=Rates_total-int(NumberofBar)-1;
          index1=index-1;
        }
       if(ColorArray[index1]!=ColorIndex && ColorArray[index]==ColorIndex) SellSignal=true;
       if(SellSignal && counter<=NumberofAlerts)
         {
          counter++;
          MqlDateTime tm;
          TimeToStruct(TimeCurrent(),tm);
          string text=TimeToString(TimeCurrent(),TIME_DATE)+" "+string(tm.hour)+":"+string(tm.min);
          SeriesTest=ArrayGetAsSeries(Close);
          if(SeriesTest) index=int(NumberofBar);
          else index=Rates_total-int(NumberofBar)-1;
          double Ask=Close[index];
          double Bid=Close[index];
          SeriesTest=ArrayGetAsSeries(Spread);
          if(SeriesTest) index=int(NumberofBar);
          else index=Rates_total-int(NumberofBar)-1;
          Bid+=Spread[index];
          string sAsk=DoubleToString(Ask,_Digits);
          string sBid=DoubleToString(Bid,_Digits);
          string sPeriod=GetStringTimeframe(ChartPeriod());
          if(SoundON) Alert("SELL 신호 
     Ask=",Ask,"
     Bid=",Bid,"
     currtime=",text,"
     Symbol=",Symbol()," Period=",sPeriod);
          if(EMailON) SendMail(SignalSirname+": SELL 신호 알림","SELL 신호 at Ask="+sAsk+", Bid="+sBid+", Date="+text+" Symbol="+Symbol()+" Period="+sPeriod);
          if(PushON) SendNotification(SignalSirname+": SELL 신호 at Ask="+sAsk+", Bid="+sBid+", Date="+text+" Symbol="+Symbol()+" Period="+sPeriod);
         }
    //---
      }
    //+------------------------------------------------------------------+
    //|  시간 프레임을 문자열로 가져오는 함수                               |
    //+------------------------------------------------------------------+
    string GetStringTimeframe(ENUM_TIMEFRAMES timeframe)
      {
    //----
       return(StringSubstr(EnumToString(timeframe),7,-1));
    //----
      }
    
  3. OnCalculate() 블록에서 BuySignal() 및 SellSignal() 함수 호출을 추가했습니다.
    //---     
       BuySignal("X2MA_Alert",ColorX2MA,1,rates_total,prev_calculated,close,spread);
       SellSignal("X2MA_Alert",ColorX2MA,2,rates_total,prev_calculated,close,spread);
    //--- 
    

    여기서 ColorX2MA는 라인 색상을 인덱스 형태로 저장하는 색상 인덱스 버퍼의 이름입니다.

    BuySignal() 및 SellSignal() 함수는 지표 코드의 OnCalculate() 블록에서 한 번만 호출된다고 가정합니다.

    이 지표는 SmoothAlgorithms.mqh 라이브러리의 클래스를 사용합니다(해당 파일을 <terminal_data_folder>\MQL5\Include에 복사해야 합니다). 클래스 사용에 대한 자세한 설명은 "추가 버퍼 없이 중간 계산을 위한 가격 시리즈 평균화" 기사에서 확인할 수 있습니다.

    Fig1. The ColorX2MA_Alert indicator on the chart

    Fig1. ColorX2MA_Alert 지표가 차트에 표시된 모습

    Fig.2. The ColorX2MA_Alert indicator. Generating alerts.

    Fig.2. ColorX2MA_Alert 지표. 알림 생성 중.

    연관 포스트

댓글 (0)