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 gravdigaz6, Today, 11:40 PM
            1 response
            6 views
            0 likes
            Last Post NinjaTrader_Manfred  
            Started by MarianApalaghiei, Today, 10:49 PM
            3 responses
            10 views
            0 likes
            Last Post NinjaTrader_Manfred  
            Started by XXtrader, Today, 11:30 PM
            0 responses
            4 views
            0 likes
            Last Post XXtrader  
            Started by love2code2trade, Yesterday, 01:45 PM
            4 responses
            28 views
            0 likes
            Last Post love2code2trade  
            Started by funk10101, Today, 09:43 PM
            0 responses
            9 views
            0 likes
            Last Post funk10101  
            Working...
            X