Please anyone know if there is a version of this indicator that does not repaint?
Files:
3Momentum_onChartSignals_Indicator_v1.0.mq4
7 kb
- Momentum onChartSignals Indicator v1.0.ex4
- good indicator
- repaint indicator
Maria Gonzalez:
Please anyone know if there is a version of this indicator that does not repaint?
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.
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 forumfor(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:
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?
- 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 - Count down.
If you want it to alert on the forming bar use i >= 0.
Please anyone know if there is a version of this indicator that does not repaint?

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register