Thread: Arrows in EA?
View Single Post
  #4 (permalink)  
Old 01-24-2007, 10:17 PM
arashas's Avatar
arashas arashas is offline
Junior Member
 
Join Date: Oct 2006
Posts: 5
arashas is on a distinguished road
Quote:
Originally Posted by igorad
It's possible.
Try to insert this function in your EA:

void DrawArrow(string name,datetime time, double price, int type, color clr)
{
ObjectCreate(name, OBJ_ARROW, 0, time, price);
ObjectSet(name, OBJPROP_COLOR, clr);
ObjectSet(name, OBJPROP_ARROWCODE, type);
}
highly appreciated

thank your favor to me


let me check it please
Reply With Quote