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 chbruno, 04-24-2024, 04:10 PM
      4 responses
      50 views
      0 likes
      Last Post chbruno
      by chbruno
       
      Started by TraderG23, 12-08-2023, 07:56 AM
      10 responses
      398 views
      1 like
      Last Post beobast
      by beobast
       
      Started by lorem, Yesterday, 09:18 AM
      5 responses
      21 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by WHICKED, Today, 12:56 PM
      2 responses
      15 views
      0 likes
      Last Post WHICKED
      by WHICKED
       
      Started by Felix Reichert, Today, 02:12 PM
      0 responses
      4 views
      0 likes
      Last Post Felix Reichert  
      Working...
      X