Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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.
    Kate W.NinjaTrader Customer Service

    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 ageeholdings, Today, 07:43 AM
      0 responses
      7 views
      0 likes
      Last Post ageeholdings  
      Started by pibrew, Today, 06:37 AM
      0 responses
      4 views
      0 likes
      Last Post pibrew
      by pibrew
       
      Started by rbeckmann05, Yesterday, 06:48 PM
      1 response
      14 views
      0 likes
      Last Post bltdavid  
      Started by llanqui, Today, 03:53 AM
      0 responses
      6 views
      0 likes
      Last Post llanqui
      by llanqui
       
      Started by burtoninlondon, Today, 12:38 AM
      0 responses
      12 views
      0 likes
      Last Post burtoninlondon  
      Working...
      X