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 rocketman7, Today, 01:00 AM
            0 responses
            1 view
            0 likes
            Last Post rocketman7  
            Started by wzgy0920, 04-20-2024, 06:09 PM
            2 responses
            27 views
            0 likes
            Last Post wzgy0920  
            Started by wzgy0920, 02-22-2024, 01:11 AM
            5 responses
            32 views
            0 likes
            Last Post wzgy0920  
            Started by wzgy0920, 04-23-2024, 09:53 PM
            2 responses
            74 views
            0 likes
            Last Post wzgy0920  
            Started by Kensonprib, 04-28-2021, 10:11 AM
            5 responses
            193 views
            0 likes
            Last Post Hasadafa  
            Working...
            X