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 cre8able, Yesterday, 01:16 PM
            3 responses
            11 views
            0 likes
            Last Post cre8able  
            Started by ChartTourist, Today, 08:22 AM
            0 responses
            6 views
            0 likes
            Last Post ChartTourist  
            Started by LiamTwine, Today, 08:10 AM
            0 responses
            2 views
            0 likes
            Last Post LiamTwine  
            Started by Balage0922, Today, 07:38 AM
            0 responses
            5 views
            0 likes
            Last Post Balage0922  
            Started by JoMoon2024, Today, 06:56 AM
            0 responses
            6 views
            0 likes
            Last Post JoMoon2024  
            Working...
            X