Momentum onChartSignals Indicator v1.0.mq4

 
Please anyone know if there is a version of this indicator that does not repaint?
 
Maria Gonzalez:
Please anyone know if there is a version of this indicator that does not repaint?

yes. it's repaint. Please change for (for(int i = 0; i < limit; i++)---> i=limit

 

Thanks, but I did not make that change, you explain how I can do it please.

 
  1. double momVal = iMomentum(symbol,timeFrame,momentumPeriod,PRICE_TYPICAL,i);
    If you change symbol or timeFrame the code breaks.
              Don't mix apples and oranges.
              On MT4: Unless the current chart is the specific pair/TF referenced, you must handle 4066/4073 errors. Download history in MQL4 EA - MQL4 and MetaTrader 4 - MQL4 programming forum

  2.     for(int i = 0; i < limit; i++)
    
    Count down.
    for(int i = limit-1; i > 0; --i)
    If you want it to alert on the forming bar use i >= 0.
 
William Roeder:
  1. If you change symbol or timeFrame the code breaks.
              Don't mix apples and oranges.
              On MT4: Unless the current chart is the specific pair/TF referenced, you must handle 4066/4073 errors. Download history in MQL4 EA - MQL4 and MetaTrader 4 - MQL4 programming forum

  2. Count down.
    If you want it to alert on the forming bar use i >= 0.
The guy must be speaking Greek cos, I don't understand programming .has anyone the latest version or non repaint and backpaint version of momentum on chart indicator?
 
Please anyone know if there is a version of this indicator that does not repaint?
Reason: