rajandran:
Hi can anyone give me clarification of Indicatorcounted funtion. In the below function Does Indicatorcounted plays any major role in EMA function.
If yes how the below function differs from normal EMA plotting
Thanks you
Rajandran R
Not major role Rajandran R. If you change the value of li_4 to zero ...
int li_4 = 0; // IndicatorCounted();
the EMA will still be drawn exactly the same.
Why don't you make copy of that and attach both of them on chart and see if there's any differences.
int li_4 = IndicatorCounted(); if (li_4 < 0) return (-1); if (li_4 > 0) li_4--; int li_0 = Bars - li_4;
- That looks like decompiled code to me. We're not going to help you with your stolen code.
- Contradictory information on IndicatorCounted() - MQL4 forum
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
Hi can anyone give me clarification of Indicatorcounted funtion. In the below function Does Indicatorcounted plays any major role in EMA function.
If yes how the below function differs from normal EMA plotting
Thanks you
Rajandran R