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 स्थापित करना

आपके द्वारा उपर्युक्त फ़ॉर्म के माध्यम से संकेतक डाउनलोड करने के बाद आपको ज़िप-फ़ाइल को अनज़िप करना होगा। तो फिर तुम फाइल कॉपी करने की जरूरत है 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

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.