How do I display the wingdings for values 141, 143, 144?

 

How do I display the wingdings for values 141, 143, 144?



There is no symbol to copy: https://docs.mql4.com/constants/wingdings



ArrowNumber[0]= "‹"; // = 0 displays
ArrowNumber[1]= "Œ"; // = 1 displays
ArrowNumber[2]= "?"; // = 2 DOES NOT display
ArrowNumber[3]= "Ž"; // = 3 displays
ArrowNumber[4]= "?"; // = 4 DOES NOT display

ArrowNumber[5]= "?"; // = 5 DOES NOT display




Does anyone know how to do this?




Thanks

 
Can this be done??
 



I found it here: https://www.mql5.com/en/articles/1503



I knew there had to be a way!!



Using the Font Wingdings

Now let's create a mark using the Windings font. Change the init() function:




int init()
{
 
   ObjectCreate("signal",OBJ_LABEL,0,0,0,0,0);
   ObjectSet("signal",OBJPROP_XDISTANCE,50);
   ObjectSet("signal",OBJPROP_YDISTANCE,50);
 
   // use symbols from the Wingdings font
   ObjectSetText("signal",CharToStr(164),60,"Wingdings",Gold);
   // CharToStr() - this function returns a line with a single
   // symbol, the code of which is specified in the single argument.
   // Simply select a symbol from the table above and write
   // its number into this function
   // 60 - use large font
   // "Wingdings" - use font Wingdings
 
   return(0);
}



Reason: