ebiesczad: t when I try to attach the indicator to the chart the indicator doesn't appear on the security window...
-
Play videoPlease edit your post.
For large amounts of code, attach it. - Look in the experts tab and find out.
change this :
while(i<=0) while(i>=0)
Try to replace this
for(n=i; n>=i+Aver_Bars; n++)
by this :
for(n=Aver_Bars; n>=1; n--)

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've been having some issues with custom indicator coding that I didn't have before. I write the code and it compiles normally, but when I try to attach the indicator to the chart the indicator doesn't appear on the security window...
Here's an example of code that I copied from the MT4 book that shows this problem:
What can be possibily be causing this?