Drawing a Dot Question

 

This code will draw an arrow over a candle.  

ObjectCreate(StringConcatenate("DwnDSymblD",TimeCurrent()), OBJ_ARROW, 0, Time[0],vH); 
ObjectSet(StringConcatenate("DwnDSymblD",TimeCurrent()), OBJPROP_ARROWCODE, SYMBOL_ARROWDOWN); 
ObjectSet(StringConcatenate("DwnDSymblD",TimeCurrent()), OBJPROP_COLOR, White); 




 Could someone show me how to make a dot instead of an arrow?


Thanks!

 
Yellowbeard:  Could someone show me how to make a dot instead of an arrow?
... OBJPROP_ARROWCODE, SYMBOL_ARROWDOWN); 
change your arrowcode to a wingding of your choice
 

Thanks again, WHRoeder,

  That worked.

Is there a way to add spacing between the dot and the high of the candle?  So that the dot is not covering the candle.

         ObjectCreate(StringConcatenate("UpBSymblB",TimeCurrent()), OBJ_ARROW, 0, Time[0],vH);           
         ObjectSet(StringConcatenate("UpBSymblB",TimeCurrent()), OBJPROP_ARROWCODE, 108);             
         ObjectSet(StringConcatenate("UpBSymblB",TimeCurrent()), OBJPROP_COLOR, Lime); 
 
ObjectCreate(StringConcatenate("UpBSymblB",TimeCurrent()), OBJ_ARROW, 0, Time[0],vH+_Point);           
ObjectSet(StringConcatenate("UpBSymblB",TimeCurrent()), OBJPROP_ARROWCODE, 108);             
ObjectSet(StringConcatenate("UpBSymblB",TimeCurrent()), OBJPROP_COLOR, Lime); 
ObjectSet(StringConcatenate("UpBSymblB",TimeCurrent()), OBJPROP_ANCHOR, ANCHOR_BOTTOM); 
 

Thanks honest knave,

  That worked!