Key_Reversal Indicator For MT5

Key_Reversal Indicator For MT5

Key_Reversal Indicator For MT5 منطقة الانعكاس الرئيسية بمساعدة ثلاثة أشرطة أو أنماط ابتلاع. نمط الابتلاع هو إشارة انعكاس قوية يستخدمها نخبة المستثمرين.

تحتوي المؤشرات على خمسة مستويات إدخال فريدة. يتم استخدام فترة الكشف عن الاتجاه للتعامل مع عدد الأشرطة التي سيتم تقييمها للعثور على اتجاه الاتجاه. جزء ضبط الفلتر مخصص للمتداولين المتقدمين الذين يحبون تداول الأزواج المتقاطعة في السوق. يتم إنشاء الإشارات على شكل سهم أحمر وأزرق. يشير السهم الأحمر إلى حدوث اتجاه هبوطي جديد. على العكس ، يشير السهم الأزرق إلى اتجاه صعودي جديد سيسيطر على السوق. هذا المؤشر مجهز بنظام تنبيه متقدم يمكنه إنشاء تنبيهات بالبريد الإلكتروني. إذا كنت مشغولاً للغاية ، يمكنك استخدام نظام تنبيه الرسائل القصيرة لهذا المؤشر.

ومع ذلك ، فإن القفز إلى الصفقات باستخدام علامة السهم خطأ كبير. قم بتحليل حالة السوق وحدد حجم اللوت وفقًا لذلك.

FREE Key_Reversal Indicator

Download the FREE Key_Reversal Indicator for MT5.

To receive my email 100% sure: 
Put my email on your whitelist!

 

Partially Automated Trading Besides Your Day Job

Alerts In Real-Time When Divergences Occur

 

تثبيت Key_Reversal Indicator For MT5

بعد تنزيل المؤشر عبر النموذج أعلاه ، ستحتاج إلى فك ضغط ملف zip. ثم تحتاج إلى نسخ الملف Key_Reversal.mq5 في المجلد MQL5Indicators تثبيت MT5 . بعد ذلك ، يرجى إعادة تشغيل MT5 وبعد ذلك ستتمكن من رؤية المؤشر في قائمة المؤشرات.

معلمات Key_Reversal Indicator For MT5

و Key_Reversal Indicator For MT5 ديه 5 المعلمات إلى تكوين.

input uint              InpPeriod      =  2;          // Trend detection period
input ENUM_INPUT_YES_NO InpUseFilter   =  INPUT_YES;  // Use trend detection filter
input ENUM_INPUT_YES_NO InpUseAlert    =  INPUT_YES;  // Show alerts
input ENUM_INPUT_YES_NO InpSendMail    =  INPUT_NO;   // Send mails
input ENUM_INPUT_YES_NO InpSendPush    =  INPUT_YES;  // Send push-notifications

مخازن Key_Reversal Indicator For MT5

و Key_Reversal Indicator For MT5 يوفر 2 مخازن.

SetIndexBuffer(0,BufferTKR,INDICATOR_DATA);
SetIndexBuffer(1,BufferBKR,INDICATOR_DATA);

الأجزاء الرئيسية من المدونة

int OnCalculate(const int rates_total,
                const int prev_calculated,
                const datetime &time[],
                const double &open[],
                const double &high[],
                const double &low[],
                const double &close[],
                const long &tick_volume[],
                const long &volume[],
                const int &spread[])
  {
//--- #AB0= gt 2:0  lt 0AA82 gt 2 1CD5@ gt 2 :0: B09 lt A5@89
   ArraySetAsSeries(open,true);
   ArraySetAsSeries(high,true);
   ArraySetAsSeries(low,true);
   ArraySetAsSeries(close,true);
   ArraySetAsSeries(time,true);
//--- @ gt 25@:0 : gt ;8G5AB20 4 gt ABC?=KE 10@ gt 2
   if(rates_total lt fmax(period,4)) return 0;
//--- @ gt 25@:0 8 @0AGQB : gt ;8G5AB20 ?@ gt AG8BK205 lt KE 10@ gt 2
   int limit=rates_total-prev_calculated;
   if(limit gt 1)
     {
      limit=rates_total-period-2;
      ArrayInitialize(BufferTKR,EMPTY_VALUE);
      ArrayInitialize(BufferBKR,EMPTY_VALUE);
     }

//---  0AGQB 8=48:0B gt @0
   static datetime last_time=0;
   for(int i=limit; i gt =0 && !IsStopped(); i--)
     {
      BufferBKR[i]=(Verification(i,open,high,low,close)== 1 ? low[i]  : EMPTY_VALUE);
      BufferTKR[i]=(Verification(i,open,high,low,close)==-1 ? high[i] : EMPTY_VALUE);
     }
     
//--- !83=0;K
   string Alerts="";
   if(time[0] gt last_time && (BufferTKR[1]!=EMPTY_VALUE || BufferBKR[1]!=EMPTY_VALUE))
     {
      string dir=(BufferBKR[1]!=EMPTY_VALUE ? "Up" : BufferTKR[1]!=EMPTY_VALUE ? "Down" : "");
      string message=Symbol()+", "+TimeframeToString(Period())+": Key Reversal "+dir+" Signal.";
      if(InpUseAlert) Alert(message);
      if(InpSendMail  && TerminalInfoInteger(TERMINAL_EMAIL_ENABLED)) SendMail("Key Reversal indicator Signal",message);
      if(InpSendPush && TerminalInfoInteger(TERMINAL_NOTIFICATIONS_ENABLED)) SendNotification(message);
      last_time=TimeCurrent();
     }

//--- return value of prev_calculated for next call
   return(rates_total);
  }
//+------------------------------------------------------------------+
//|  gt 8A: ?0BB5@= gt 2                                                  |
//+------------------------------------------------------------------+
int Verification(const int shift,const double &open[],const double &high[],const double &low[],const double &close[])
  {
   int signal=(close[shift] gt high[shift+1] ? 1 : close[shift] lt low[shift+1] ? -1 : 0);
   if(!InpUseFilter)
      return signal;
   for(int i=1; i lt =period; i++)
     {
      int check=(close[shift+i] gt open[shift+i] ? 1 : close[shift+i] lt open[shift+i] ? -1 : 0);
      if((signal==1 && check==1) || (signal==-1 && check==-1))
         return 0;
     }
   return signal;
  }
//+------------------------------------------------------------------+
//| Timeframe to string                                              |
//+------------------------------------------------------------------+
string TimeframeToString(const ENUM_TIMEFRAMES timeframe)
  { 
   return StringSubstr(EnumToString(timeframe),7);
  }
//+------------------------------------------------------------------+

 

About Me

I'm Mike Semlitsch the owner of PerfectTrendSystem.com. My trading career started in 2007. Since 2013 I have helped thousands of traders to take their trading to the next level. Many of them are now constantly profitable traders. 

The following performance was achieved by me while trading live in front of hundreds of my clients:

Connect With Me:  

Results From 5 Months!
This service starts soon! Be the first who get's notified when it begins!

This FREE Indicator Can Transform
Your Trading!

FREE Indicator + Telegram Group


Request the Ultimate Double Top/Bottom Indicator which is used by 10,000+ traders.