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 mjairg, 07-20-2023, 11:57 PM
            3 responses
            213 views
            1 like
            Last Post PaulMohn  
            Started by TheWhiteDragon, 01-21-2019, 12:44 PM
            4 responses
            544 views
            0 likes
            Last Post PaulMohn  
            Started by GLFX005, Today, 03:23 AM
            0 responses
            3 views
            0 likes
            Last Post GLFX005
            by GLFX005
             
            Started by XXtrader, Yesterday, 11:30 PM
            2 responses
            12 views
            0 likes
            Last Post XXtrader  
            Started by Waxavi, Today, 02:10 AM
            0 responses
            7 views
            0 likes
            Last Post Waxavi
            by Waxavi
             
            Working...
            X