Colours work, but not markersize nor font type: all I get is a standard text with the choosen colour.
I attach a part of my code:
protected override void Initialize()
{
Font textFont = new Font("Wingdings", 20);
CalculateOnBarClose = true;
Overlay = false;
PriceTypeSupported = false;
}
protected override void OnBarUpdate()
{
if (EMA(Close,200)[0] >= Close[0])
{
DrawTextFixed("tag1", "g", TextPosition.TopLeft, Color.Red, textFont,Color.Black,Color.Black,1);
{
{
PS: I tried Trebuchet MS, Wingdings and Webdings)

Comment