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

Inline Font Specs in Draw.TextFixed?

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

    Inline Font Specs in Draw.TextFixed?

    Hi!

    How can I set font specifications inline in a Draw.TextFixed line such as this?

    {

    Draw.TextFixed(this, "sometag", "sometext", TextPosition.TopRight);
    }

    Thanks.


    #2
    Hello chartchart,

    Thank you for your post.

    To set a custom font style for Draw.TextFixed(), you would first need to use SimpleFont in State.DataLoaded to define a custom font style. Then, you would use the following Draw.TextFixed() syntax to use a custom font for the text drawn.

    Draw.TextFixed(NinjaScriptBase owner, string tag, string text, TextPosition textPosition, Brush textBrush, SimpleFont font, Brush outlineBrush, Brush areaBrush, int areaOpacity)

    See the attached example script demonstrating using Draw.TextFixed() with a custom font style.

    Also, see the help guide documentation below for more information.
    Draw.TextFixed() - https://ninjatrader.com/support/help..._textfixed.htm
    SimpleFont - https://ninjatrader.com/support/help...font_class.htm

    Let us know if we may assist further.
    Attached Files
    Brandon H.NinjaTrader Customer Service

    Comment


      #3
      Thank you for your quick response.

      I followed your instructions and am receiving a CS0103 for both the definition line and the Draw.TextFixed line:

      "The name myFont does not exist in the current context".


      Parts from the document...

      else if (State == State.DataLoaded)
      {
      myFont = new NinjaTrader.Gui.Tools.SimpleFont("Courier New", 20);
      }

      and...

      protected override void OnBarUpdate()
      {

      Draw.TextFixed(this, "myTextFixed", "Hello world!", TextPosition.BottomRight, ChartControl.Properties.ChartText, myFont, Brushes.Blue, Brushes.Transparent, 0);
      }


      Any ideas?

      Comment


        #4
        Hello chartchart,

        Thank you for your note.

        The error message you are reporting means that you are trying to use an object (myFont) before it has been created.

        Did you create the myFont object at the beginning of the script as seen below from the DrawTextFixedCustomFont example script?

        private NinjaTrader.Gui.Tools.SimpleFont myFont;

        See the attached strategy example that demonstrates using a custom font for Draw.TextFixed() within a strategy.

        Let us know if we may assist further.
        Attached Files
        Brandon H.NinjaTrader Customer Service

        Comment


          #5
          Thank you!

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by fx.practic, 10-15-2013, 12:53 AM
          5 responses
          5,406 views
          0 likes
          Last Post Bidder
          by Bidder
           
          Started by Shai Samuel, 07-02-2022, 02:46 PM
          4 responses
          98 views
          0 likes
          Last Post Bidder
          by Bidder
           
          Started by DJ888, Yesterday, 10:57 PM
          0 responses
          8 views
          0 likes
          Last Post DJ888
          by DJ888
           
          Started by MacDad, 02-25-2024, 11:48 PM
          7 responses
          160 views
          0 likes
          Last Post loganjarosz123  
          Started by Belfortbucks, Yesterday, 09:29 PM
          0 responses
          9 views
          0 likes
          Last Post Belfortbucks  
          Working...
          X