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
I am running FMOneEA on EurUsd and UsdCad H4 and can see in the expert's log
the ZigZag-indicator is constantly loaded and removed and loaded and removed and ...
Can anybody confirm this? Rather strange! Gooly
2) If no parameters are given, the indicator should use its default values - if I remember correctly.
Usually that means the indicator parameters are wrong.
1) But it seems to work perfectly?
2) If no parameters are given, the indicator should use its default values - if I remember correctly.
Same problem even after I changed the indicator call and entered the original values: 12,5,3.
If you do not like my calculation, please do the changes fit your calculations
That is why I do not understand why the terminal removes the indicator!
r3jfx - I don't see any error in your code!
That is why I do not understand why the terminal removes the indicator!
and only code that I wrote it successful.
If there is a better way, please let me know.
I am running FMOneEA on EurUsd and UsdCad H4 and can see in the expert's log
the ZigZag-indicator is constantly loaded and removed and loaded and removed and ...
Can anybody confirm this? Rather strange! Gooly
I am running FMOneEA on EurUsd and UsdCad H4 and can see in the expert's log
the ZigZag-indicator is constantly loaded and removed and loaded and removed and ...
Can anybody confirm this? Rather strange! Gooly
Therefore, to get the value of the ZigZag indicator, it can not be done with iCustom function as usual,
for example double val = iCustom (NULL,0,"SampleInd", 13,1,0);
Because if the value of ZigZag indicator taken by iCustom (symbol,timeframe ,"ZigZag",line index (mode),shift), then the result will always be ZERO. (If you do not believe, please try in print).Therefore, I made the iteration to get the value and position of ZigZag indicator.
In my opinion, why the trading terminal constantly loaded and removed ZigZag indicator on FMOneEA, because the terminal loaded the ZigZag indicator when iteration begins, and after the iteration is complete (and its value has been taken), ZigZag indicator removed by the terminal.