Reversal Indicator For MT5

Reversal Indicator For MT5

Table Of Contents:

  1. Reversal Indicator For MT5
  2. Memasang Reversal Indicator For MT5
  3. Parameter Reversal Indicator For MT5
  4. Reversal Indicator For MT5
  5. Bahagian Utama Kod

Reversal Indicator For MT5 menunjukkan jenis pembalikan khas. Pemaju penunjuk itu melihat julat. Jika lilin sebenar menghasilkan rendah baru dalam julat tetapi kemudian ditutup sebagai lilin menaik maka anda perlu memasuki lilin seterusnya.

FREE Reversal Indicator

Download the FREE 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

 

Memasang Reversal Indicator For MT5

Selepas anda memuat turun penunjuk melalui borang di atas, anda perlu unzip fail zip. Kemudian anda perlu menyalin fail Reversal.mq5 ke folder MQL5Indicators pemasangan MT5 anda. Selepas itu sila mulakan MT5 dan kemudian anda akan dapat melihat penunjuk dalam senarai petunjuk.

Parameter Reversal Indicator For MT5

Reversal Indicator For MT5 mempunyai parameter 2 untuk mengkonfigurasi.

input int Interval=10; input bool Send_Email=true; 

Reversal Indicator For MT5

Reversal Indicator For MT5 menyediakan buffer 2 .

SetIndexBuffer(0,Buffer1); SetIndexBuffer(1,Buffer2); 

Bahagian Utama Kod

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[])   {    int limit=rates_total-prev_calculated; //--- counting from 0 to rates_total    ArraySetAsSeries(Buffer1,true);    ArraySetAsSeries(Buffer2,true); //--- initial zero    if(prev_calculated lt 1)      {       ArrayInitialize(Buffer1,0);       ArrayInitialize(Buffer2,0);      }    else       limit++;    datetime Time[];     if(CopyHigh(Symbol(), PERIOD_H6, 0, rates_total, High)  lt = 0) return(rates_total);    ArraySetAsSeries(High,true);    if(CopyClose(Symbol(), PERIOD_H6, 0, rates_total, Close)  lt = 0) return(rates_total);    ArraySetAsSeries(Close,true);    if(CopyOpen(Symbol(), PERIOD_H6, 0, rates_total, Open)  lt = 0) return(rates_total);    ArraySetAsSeries(Open,true);    if(CopyLow(Symbol(), PERIOD_H6, 0, rates_total, Low)  lt = 0) return(rates_total);    ArraySetAsSeries(Low,true);    if(CopyTime(Symbol(), Period(), 0, rates_total, Time)  lt = 0) return(rates_total);    ArraySetAsSeries(Time,true); //--- main loop    for(int i=limit-1; i gt =0; i--)      {       if(i gt =MathMin(5000-1,rates_total-1-50)) continue; //omit some old rates to prevent "Array out of range" or slow calculation                                                            //Indicator Buffer 1       if(High[1+i]==Resistance(Interval*PeriodSeconds(),false,00,00,false,i) //Candlestick High is equal to Resistance          && Close[1+i] lt Open[1+i]//Candlestick Close  lt  Candlestick Open          )         {          Buffer1[i]=High[i]; //Set indicator value at Candlestick High          if(i==1 && Time[1]!=time_alert) myAlert("indicator","Sell"); //Alert on next bar open          time_alert=Time[1];         }       else         {          Buffer1[i]=0;         }       //Indicator Buffer 2       if(Low[1+i]==Support(Interval*PeriodSeconds(),false,00,00,false,i) //Candlestick Low is equal to Support          && Close[1+i] gt Open[1+i]//Candlestick Close  gt  Candlestick Open          )         {          Buffer2[i]=Low[i]; //Set indicator value at Candlestick Low          if(i==1 && Time[1]!=time_alert) myAlert("indicator","Buy"); //Alert on next bar open          time_alert=Time[1];         }       else         {          Buffer2[i]=0;         }      }    return(rates_total);   } //+------------------------------------------------------------------+ 

 

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.