I searched "draw arrows" for you. Here's a search result that might help...
https://forum.mql4.com/17162
I searched "draw arrows" for you. Here's a search result that might help...
https://forum.mql4.com/17162
You agree to website policy and terms of use
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);
}