I made a few functions that makes it a lot easier for visuals, because you guys have helped me I thought I would contribute these

void LineMaker(series name,color LineColor,double price, string Description)
ObjectCreate(title, OBJ_HLINE, 0,TimeCurrent(),price);
ObjectSet(title, OBJPROP_STYLE, STYLE_SOLID);
ObjectSet(title, OBJPROP_COLOR, LineColor);
ObjectSet(title, OBJPROP_BACK, true);
ObjectSetText(title,Description,8,Arial,LineColor) ;
return(0);

void LabelMaker(series lblname,int x,int y,series window,series txt,int size,string font,color txtcolor)
ObjectCreate(lblname, OBJ_LABEL, WindowFind(window), 0, 0);
ObjectSet(lblname, OBJPROP_CORNER, 0);
ObjectSet(lblname, OBJPROP_XDISTANCE, x);
ObjectSet(lblname, OBJPROP_YDISTANCE, y);
ObjectSetText(lblname,txt,size,font, txtcolor);
return(0);


example to create a lineup
LineMaker(linename,LineColor,Price,Description);

example to create a tag
LabelMaker(labelname,X,Y,SeperateWindowName,what you would like it to state,fontSize,Arial,fontColor);