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

draw text using chartcontrol.properties

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

    draw text using chartcontrol.properties

    Hi, I'm trying to use chart font size property for my indicator text like this:

    Draw.Text(this, @"Text 1 " + Convert.ToString(CurrentBars[0]), "my text", 0, Low[0]-5*TickSize,ChartControl.Properties.ChartText );

    but it doesn't adjust size to match, what am I missing?

    Thanks!


    #2
    Hello Sparkyboy,

    The ChartText is a brush and not a font, To set any values for the text font you need to use one of the overloads that has SimpleFont:

    Code:
    Draw.Text(NinjaScriptBase owner, string tag, bool isAutoScale, string text, int barsAgo, double y, int yPixelOffset, Brush textBrush, SimpleFont font, TextAlignment alignment, Brush outlineBrush, Brush areaBrush, int areaOpacity)
    Draw.Text(NinjaScriptBase owner, string tag, bool isAutoScale, string text, DateTime time, double y, int yPixelOffset, Brush textBrush, SimpleFont font, TextAlignment alignment, Brush outlineBrush, Brush areaBrush, int areaOpacity)​

    Code:
    if(CurrentBar < 2) return;
    Draw.Text(this, "MyText", true, "Some Text", 2, Close[2] - 5 * TickSize, 0, ChartControl.Properties.ChartText, ChartControl.Properties.LabelFont, TextAlignment.Center, Brushes.Transparent, Brushes.Transparent, 1);
    JesseNinjaTrader Customer Service

    Comment


      #3
      Many thanks, Jesse.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by rbeckmann05, Yesterday, 06:48 PM
      1 response
      12 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
      10 views
      0 likes
      Last Post burtoninlondon  
      Started by AaronKoRn, Yesterday, 09:49 PM
      0 responses
      15 views
      0 likes
      Last Post AaronKoRn  
      Started by carnitron, Yesterday, 08:42 PM
      0 responses
      11 views
      0 likes
      Last Post carnitron  
      Working...
      X