RSI Strike Indicator For MT5

RSI Strike Indicator For MT5

Table Of Contents:

  1. RSI Strike Indicator For MT5
  2. RSI Strike Indicator For MT5 Yükleme
  3. RSI Strike Indicator For MT5 Parametreleri
  4. RSI Strike Indicator For MT5
  5. Kodun Ana Bölümleri

RSI Strike Indicator For MT5 için RSI Strike Indicator For MT5 , teknik olarak sağlam geliştirilmiş bir ticaret aracıdır - bu gösterge, Nispi Güç Endeksi osilatörü göstergesi olarak bilinen zaten oldukça etkili bir göstergeye dayanır - Nispi Güç endeksi aracı, güç ölçümüne yardımcı olmak için harika bir göstergedir. nihayetinde (çoğunlukla değil) ters ticaret fırsatlarına yol açan aşırı satılmış ve aşırı alım bölgeleri olarak bilinen sektörlerde ortaya çıkan olası tükenme seviyelerine dikkat edin. Bununla birlikte, bu değiştirilmiş versiyon, gerçek Göreceli Güç Endeksi çizgisinin normalde ekranın alt penceresinde göründüğü gibi görünmemesinden biraz farklıdır - bu aslında biraz farklıdır, çünkü aslında geçiş noktalarının Göreceli Güç yoluyla yapıldığı anları görüntüler. Endeks ve bu nedenle her kavşak, grev olarak bilinen şeyle işaretlenir. Bu vuruşlar, aşağı doğru veya yukarı doğru bakan çok renkli bir okla gösterilir - aşağı bakan oklar bir satış sinyali ve yukarı bakan oklar bir satın alma sinyali verir - ayrıca her yığın dört ok içerebilir - bununla ilgili harika olan şey göstergesi, her bir kırmızı okun kuyruklarını bağlayarak yüksek derecede alakalı dirençli destek hatlarının çizilmesi için kullanılabileceğidir.

FREE RSI Strike Indicator

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

 

RSI Strike Indicator For MT5 Yükleme

Göstergeyi yukarıdaki form aracılığıyla indirdikten sonra zip dosyasını açmanız gerekir. Ardından rsi_strike.mq5 dosyasını MT5 kurulumunuzun MQL5Indicators klasörüne kopyalamanız gerekir. Bundan sonra lütfen MT5'i yeniden başlatın, ardından göstergeyi göstergeler listesinde görebileceksiniz.

RSI Strike Indicator For MT5 Parametreleri

RSI Strike Indicator For MT5 , yapılandırılacak 16 parametrelerine sahiptir.

input int RSI_Period1=2; input int RSI_Period2=4; input ENUM_APPLIED_PRICE RSI_Price1=PRICE_CLOSE; input ENUM_APPLIED_PRICE RSI_Price2=PRICE_CLOSE; input int RSI_Period3=3; input int RSI_Period4=6; input ENUM_APPLIED_PRICE RSI_Price3=PRICE_CLOSE; input ENUM_APPLIED_PRICE RSI_Price4=PRICE_CLOSE; input int RSI_Period5=4; input int RSI_Period6=8; input ENUM_APPLIED_PRICE RSI_Price5=PRICE_CLOSE; input ENUM_APPLIED_PRICE RSI_Price6=PRICE_CLOSE; input int RSI_Period7=5; input int RSI_Period8=10; input ENUM_APPLIED_PRICE RSI_Price7=PRICE_CLOSE; input ENUM_APPLIED_PRICE RSI_Price8=PRICE_CLOSE; 

RSI Strike Indicator For MT5

RSI Strike Indicator For MT5 , 8 arabelleklerini sağlar.

SetIndexBuffer(0,CrossUp1,INDICATOR_DATA); SetIndexBuffer(1,CrossDown1,INDICATOR_DATA); SetIndexBuffer(2,CrossUp2,INDICATOR_DATA); SetIndexBuffer(3,CrossDown2,INDICATOR_DATA); SetIndexBuffer(4,CrossUp3,INDICATOR_DATA); SetIndexBuffer(5,CrossDown3,INDICATOR_DATA); SetIndexBuffer(6,CrossUp4,INDICATOR_DATA); SetIndexBuffer(7,CrossDown4,INDICATOR_DATA); 

Kodun Ana Bölümleri

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[])   { //---- checking the number of bars to be enough for the calculation    for(int numb=0; numb lt 8; numb++) if(BarsCalculated(RSI_Handle[numb]) lt rates_total) return(RESET);    if(rates_total lt min_rates_total) return(RESET);  //---- declarations of local variables     int to_copy,limit,bar;    double Range,AvgRange;    double RSI1[],RSI2[],RSI3[],RSI4[],RSI5[],RSI6[],RSI7[],RSI8[];  //---- calculations of the necessary amount of data to be copied //---- and the  limit  starting index for the bars recalculation loop    if(prev_calculated gt rates_total || prev_calculated lt =0)// checking for the first start of the indicator calculation       limit=rates_total-min_rates_total-1; // starting index for calculation of all bars    else limit=rates_total-prev_calculated; // starting index for calculation of new bars     to_copy=limit+2; //--- copy newly appeared data in the arrays    if(CopyBuffer(RSI_Handle[0],0,0,to_copy,RSI1) lt =0) return(RESET);    if(CopyBuffer(RSI_Handle[1],0,0,to_copy,RSI2) lt =0) return(RESET);    if(CopyBuffer(RSI_Handle[2],0,0,to_copy,RSI3) lt =0) return(RESET);    if(CopyBuffer(RSI_Handle[3],0,0,to_copy,RSI4) lt =0) return(RESET);    if(CopyBuffer(RSI_Handle[4],0,0,to_copy,RSI5) lt =0) return(RESET);    if(CopyBuffer(RSI_Handle[5],0,0,to_copy,RSI6) lt =0) return(RESET);    if(CopyBuffer(RSI_Handle[6],0,0,to_copy,RSI7) lt =0) return(RESET);    if(CopyBuffer(RSI_Handle[7],0,0,to_copy,RSI8) lt =0) return(RESET);  //---- indexing elements in arrays as timeseries      ArraySetAsSeries(RSI1,true);    ArraySetAsSeries(RSI2,true);    ArraySetAsSeries(RSI3,true);    ArraySetAsSeries(RSI4,true);    ArraySetAsSeries(RSI5,true);    ArraySetAsSeries(RSI6,true);    ArraySetAsSeries(RSI7,true);    ArraySetAsSeries(RSI8,true);    ArraySetAsSeries(high,true);    ArraySetAsSeries(low,true);  //---- main indicator calculation loop    for(bar=limit; bar gt =0 && !IsStopped(); bar--)      {       AvgRange=0.0;       for(int count=bar; count lt =bar+9; count++) AvgRange+=MathAbs(high[count]-low[count]);       Range=AvgRange/10;        CrossUp1[bar]=0.0;       CrossDown1[bar]=0.0;       CrossUp2[bar]=0.0;       CrossDown2[bar]=0.0;       CrossUp3[bar]=0.0;       CrossDown3[bar]=0.0;       CrossUp4[bar]=0.0;       CrossDown4[bar]=0.0;        if(RSI1[bar] gt RSI2[bar] && RSI1[bar+1] lt RSI2[bar+1]) CrossUp1[bar]=low[bar]-Range*0.2;       else  if(RSI1[bar] lt RSI2[bar] && RSI1[bar+1] gt RSI2[bar+1]) CrossDown1[bar]=high[bar]+Range*0.2;        if(RSI3[bar] gt RSI4[bar] && RSI3[bar+1] lt RSI4[bar+1]) CrossUp2[bar]=low[bar]-Range*0.4;       else  if(RSI3[bar] lt RSI4[bar] && RSI3[bar+1] gt RSI4[bar+1]) CrossDown2[bar]=high[bar]+Range*0.4;        if(RSI5[bar] gt RSI6[bar] && RSI5[bar+1] lt RSI6[bar+1]) CrossUp3[bar]=low[bar]-Range*0.6;       else  if(RSI5[bar] lt RSI6[bar] && RSI5[bar+1] gt RSI6[bar+1]) CrossDown3[bar]=high[bar]+Range*0.6;        if(RSI7[bar] gt RSI8[bar] && RSI7[bar+1] lt RSI8[bar+1]) CrossUp4[bar]=low[bar]-Range*0.8;       else  if(RSI7[bar] lt RSI8[bar] && RSI7[bar+1] gt RSI8[bar+1]) CrossDown4[bar]=high[bar]+Range*0.8;      } //----         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.