Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

increase font size and change color

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    increase font size and change color


    Hi. I have this code that works fine. It gives me the value of ATR in a number. I would like to change the size and color of the ATR value but I can't.
    Thank you


    if(CurrentBar>Period)
    {

    string text = string.Format("ATR({0}): {1}",Period,Math.Round(ATR(Period)[0],2));

    DrawTextFixed("Nebraska",text,TextPosition.TopRigh t,Color.White,new Font("Arial", 40) ,Color.White, Color.White,0 );


    }

    #2
    Hello julifro,

    Thank you for your note.

    There would not be a way to make the text output of DrawTextFixed display in multiple colors. You could consider using multiple DrawTextFixed and the newline character (\n) to print the two on different lines in different colors, like this example:

    protected override void OnBarUpdate()
    {
    if(CurrentBar>Period)
    {

    DrawTextFixed("Nebraska1","ATR("+Period+")",TextPo sition.TopRight,Color.White,new Font("Arial", 40) ,Color.White, Color.White,0);
    DrawTextFixed("Nebraska2","\n"+Math.Round(ATR(Peri od)[0],2),TextPosition.TopRight,Color.Red,new Font("Arial", 40) ,Color.White, Color.White,0);

    }
    }

    That would really be the only option if you want them different colors.

    Please let us know if we may be of further assistance to you.

    Comment


      #3
      thanks for your help
      Last edited by julifro; 04-11-2020, 12:24 PM.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      617 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      357 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      105 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      561 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      566 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X