I searched "draw arrows" for you. Here's a search result that might help...
https://forum.mql4.com/17162

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 guys!
Please tell me how I can convert these lines into marks(preferrably down and/or up arrows) positioned at the current bar at price = HighE, LowE or CloseE..
Thanks in advanced!! =)
void Draw()
{
name_8="High Estimate";
ObjectCreate(name_8,OBJ_HLINE,0,D'2000.11.01 10:30',HighE);
ObjectSet(name_8,OBJPROP_COLOR,Yellow);
name_8="Low Estimate";
ObjectCreate(name_8,OBJ_HLINE,0,D'2000.11.01 10:30',HighE);
ObjectSet(name_8,OBJPROP_COLOR,Yellow);
name_8="Close Estimate";
ObjectCreate(name_8,OBJ_HLINE,0,D'2000.11.01 10:30',CloseE);
ObjectSet(name_8,OBJPROP_COLOR,Yellow);
}