Skip to content

Commit

Permalink
Updated indicators for ver.3.17
Browse files Browse the repository at this point in the history
  • Loading branch information
9nix6 committed May 10, 2021
1 parent e8976d1 commit d7b2e26
Show file tree
Hide file tree
Showing 58 changed files with 4 additions and 4 deletions.
Binary file modified Indicators/MedianRenko/ADX Cross Alerts.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/ADX.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/ATP.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/ATR.ex5
Binary file not shown.
8 changes: 4 additions & 4 deletions Indicators/MedianRenko/ATR.mq5
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#property indicator_color1 DodgerBlue
#property indicator_label1 "ATR"
//--- input parameters
input int InpAtrPeriod=14; // ATR period
input int Inp_AtrPeriod=14; // ATR period
//--- indicator buffers
double ExtATRBuffer[];
double ExtTRBuffer[];
Expand All @@ -33,12 +33,12 @@ int ExtPeriodATR;
void OnInit()
{
//--- check for input value
if(InpAtrPeriod<=0)
if(Inp_AtrPeriod<=0)
{
ExtPeriodATR=14;
printf("Incorrect input parameter InpAtrPeriod = %d. Indicator will use value %d for calculations.",InpAtrPeriod,ExtPeriodATR);
printf("Incorrect input parameter InpAtrPeriod = %d. Indicator will use value %d for calculations.",Inp_AtrPeriod,ExtPeriodATR);
}
else ExtPeriodATR=InpAtrPeriod;
else ExtPeriodATR=Inp_AtrPeriod;
//--- indicator buffers mapping
SetIndexBuffer(0,ExtATRBuffer,INDICATOR_DATA);
SetIndexBuffer(1,ExtTRBuffer,INDICATOR_CALCULATIONS);
Expand Down
Binary file modified Indicators/MedianRenko/AroonOscillator.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/AwesomeOscillator.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/BB_MACD.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/BollingerBandsMacd.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/CCI(alternative).ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/CCI.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/ChaikinVolatility.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/ColorHMA.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/DT_Oscillator.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/DidiIndex.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/DonchianChannel.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/Envelopes.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/Fractals.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/GMMA.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/Gann_Hi_Lo_Activator.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/Gann_Hi_Lo_Activator_SSL.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/HA_Smoothed.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/HalfTrend.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/Heiken_Ashi.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/Ichimoku.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/KeltnerChannel.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/LRMA.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/LinearRegression.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/MA.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/MACD.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/MACD_Line.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/Momentum.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/NRTR.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/OBV.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/OscillatorCandles.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/ParabolicSAR.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/ProVolume.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/QQE.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/ROC.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/RSI.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/RVI.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/RangeDetector.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/RangeDetector.mq5
Binary file not shown.
Binary file modified Indicators/MedianRenko/StdDev.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/Stochastic.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/T3.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/TDI.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/TMA_CenteredBands.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/TRIX.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/TimeLine.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/VEMA_Wilders_DMI.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/VWAP_lite.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/Volatility.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/Volume_Average_percent.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/Volumes.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/WPR.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/WeisWaves.ex5
Binary file not shown.
Binary file modified Indicators/MedianRenko/ZigZag.ex5
Binary file not shown.

0 comments on commit d7b2e26

Please sign in to comment.