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 Taddypole, 04-26-2024, 02:47 PM
      1 response
      10 views
      0 likes
      Last Post NinjaTrader_Eduardo  
      Started by futtrader, 04-21-2024, 01:50 AM
      6 responses
      58 views
      0 likes
      Last Post futtrader  
      Started by sgordet, Today, 11:48 AM
      0 responses
      4 views
      0 likes
      Last Post sgordet
      by sgordet
       
      Started by Trader146, Today, 11:41 AM
      0 responses
      5 views
      0 likes
      Last Post Trader146  
      Started by jpapa, 04-23-2024, 07:22 AM
      2 responses
      19 views
      0 likes
      Last Post rene69851  
      Working...
      X