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

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

    Leave a comment:


  • NinjaTrader_Kate
    replied
    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.

    Leave a comment:


  • julifro
    started a topic increase font size and change color

    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 );


    }

Latest Posts

Collapse

Topics Statistics Last Post
Started by traderqz, Yesterday, 04:32 PM
1 response
10 views
0 likes
Last Post NinjaTrader_Gaby  
Started by f.saeidi, Today, 05:56 AM
1 response
4 views
0 likes
Last Post Jltarrau  
Started by Jltarrau, Today, 05:57 AM
0 responses
4 views
0 likes
Last Post Jltarrau  
Started by Stanfillirenfro, Yesterday, 09:19 AM
7 responses
51 views
0 likes
Last Post NinjaTrader_Gaby  
Started by TraderCro, 04-12-2024, 11:36 AM
4 responses
71 views
0 likes
Last Post Mindset
by Mindset
 
Working...
X