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

Looking to reduce default Draw.<shape> in NT 8

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

    Looking to reduce default Draw.<shape> in NT 8

    Hello -

    I am looking for a way to reduce the default shape size of Draw.Dot, Draw.Square etc.

    This was posted for NT 7:

    DrawText("DOT" + CurrentBar, true, "l", 0, High[0] + 7, 0, Color.LimeGreen, new Font("Wingdings", 32),StringAlignment.Center, Color.Empty, Color.Empty, 100);

    Is there an equivalent for NT 8?

    Thanks,
    Mark

    #2
    Hi Mark,

    Thanks for your post.

    Here is the equivalent of your example:

    Draw.Text(this, "DOT" + CurrentBar, true, "l", 0, High[0] + 7 * TickSize, 0, Brushes.LimeGreen, new SimpleFont("Wingdings", 32), TextAlignment.Center , Brushes.Transparent, Brushes.Transparent, 100);
    Paul H.NinjaTrader Customer Service

    Comment


      #3
      It worked. Thanks Paul.

      Comment


        #4
        Hi Mark, I would like to apply the same reduction in size for those shapes. Would it be possible to explain how you went about it? Cheers.

        Comment


          #5
          Hi there -

          You use the Windows WingDings font:

          Draw.Text(this, "mp" + CurrentBar, true, "n", 0, Value[0], 0, Brushes.DarkOrange, new SimpleFont("Wingdings", 7), TextAlignment.Center , Brushes.Transparent, Brushes.Transparent, 100);


          new SimpleFont("Wingdings", 7) is a square

          You'll need to experiment with the other font ascii mappings to choose the object you want to print to your chart.

          new NinjaTrader.Gui.Tools.SimpleFont("Wingdings", 16) ;

          Comment


            #6
            The issue with wingding is if you are going to sell the indicator and the user doesn't own word, the dot will not appear

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by ageeholdings, Today, 07:43 AM
            0 responses
            7 views
            0 likes
            Last Post ageeholdings  
            Started by pibrew, Today, 06:37 AM
            0 responses
            4 views
            0 likes
            Last Post pibrew
            by pibrew
             
            Started by rbeckmann05, Yesterday, 06:48 PM
            1 response
            14 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
            12 views
            0 likes
            Last Post burtoninlondon  
            Working...
            X