rera7:
now i need to add two more different arrows
if High[i+5]>High[i] it should show red square at High[i]+.0002
:-
Play videoPlease edit your post.
For large amounts of code, attach it.
if(High[i+1]>High[i] ) ExtMapBuffer1[i]=High[i]; else ExtMapBuffer1[i]=EMPTY_VALUE;
Where is your code that does that? learn to code it, or pay someone. We're not going to code it FOR you. We are willing to HELP you when you post your attempt (using SRC) and the nature of your problem.

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,
i got this simple arrow indicator from this same forum
if High[i+1]>High[i] it shows red arrow at High[i]
if(Low[i+1]>Low[i]) it shows green arrow at Low[i]
now i need to add two more different arrows
if High[i+5]>High[i] it should show red square at High[i]+.0002
if(Low[i+5]>Low[i]) it should show green square at Low[i]+.0002
i am new to MQL. by guessing ...i tried adding two more indicators in code but it is not working
i know it simple but i am clueless since two weeks.anybody please include above two arrow symbols ...
so that i can learn and add as many as arrows if i need..please help me ! thanks.