ColorJFatl_Digit_Alert: MetaTrader 5를 위한 경고 지표

Mike 2017.01.18 18:32 54 0 0
첨부파일

ColorJFatl_Digit 지표는 알림 기능을 제공하여 이메일 및 모바일 기기로 푸시 알림을 전송합니다.

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

  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("ColorJFatl_Digit_Alert",ColorExtLineBuffer,2,rates_total,prev_calculated,close,spread);
       SellSignal("ColorJFatl_Digit_Alert",ColorExtLineBuffer,0,rates_total,prev_calculated,close,spread);
    //--- 
    

ColorExtLineBuffer는 색상 인덱스를 저장하기 위한 색상 버퍼의 이름입니다.

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

이 지표는 SmoothAlgorithms.mqh 라이브러리의 클래스들을 사용합니다 (해당 파일을 <terminal_data_folder>\MQL5\Include 폴더에 복사해야 합니다). 클래스 사용법에 대해서는 "추가 버퍼 없이 중간 계산을 위한 가격 시리즈 평균화"라는 기사를 참조하시기 바랍니다.

Fig1. ColorJFatl_Digit_Alert 지표 차트

Fig1. ColorJFatl_Digit_Alert 지표 차트

Fig.2. ColorJFatl_Digit_Alert 지표 알림 생성

Fig.2. ColorJFatl_Digit_Alert 지표 알림 생성.

목록
댓글 0