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

TsSuperTrend

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

    TsSuperTrend

    Can someone add a vertical offset capability for the arrows and cability of selection of the arrow size without having to go thru the code.
    Attached Files

    #2
    Hi rtj4201,

    If you're not able to get a response from the community, consider a NinajScript consultant for this:
    Ryan M.NinjaTrader Customer Service

    Comment


      #3
      Actually, I looked at the code quickly and added 6 tics to setting. That works. I did not see an arrow size adjustment in the NinjaScript for the DrawArrowUp or DrawArrowDown. How do I adjust the arrow size?

      Comment


        #4
        There's no control for drawing objects' size. As an alternative, some people DrawText() which allows font size control.
        Ryan M.NinjaTrader Customer Service

        Comment


          #5
          rtj4201,

          You can add code that will "offset" any desired object.... Many ways to do this, but the most straightforward might be to

          - add integer field as input....Ex:
          create a Variable
          ... private int _offset = 6;

          - add code to make it modifiable Ex:
          [Description(" ") ]
          [Category("ChartControl") ]
          [Gui.Design.DisplayName ("Offset") ]
          public int Offset
          {
          get {return offset}
          set {offset = Math.Min(15,Math.Max(value,1));}
          }

          - modify the DrawObject command to use (_offset * TickSize)
          instead of a fixed number (such as 6).
          This will let you change the amount of space between the candlestick and the object.

          NOTE: double check the spacing & spelling before you try to copy paste this code. I keyed it fast, may have errors.
          Last edited by photog53; 06-08-2011, 08:51 PM.

          Comment


            #6
            Originally posted by rtj4201 View Post
            Can someone add a vertical offset capability for the arrows and cability of selection of the arrow size without having to go thru the code.

            Ninja does not offer the ability to alter object size...but you can change which object you put on the chart.
            For example...if the "arrow" is too large, then perhaps a small triangle would work better. (Ex: DrawTriangleUp or DrawTriangleDown instead of DrawArrowUp )

            The code syntax is the same for both objects, only the selected object will be different.

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by AveryFlynn, Today, 04:57 AM
            0 responses
            4 views
            0 likes
            Last Post AveryFlynn  
            Started by RubenCazorla, 08-30-2022, 06:36 AM
            3 responses
            77 views
            0 likes
            Last Post PaulMohn  
            Started by f.saeidi, Yesterday, 12:14 PM
            9 responses
            23 views
            0 likes
            Last Post f.saeidi  
            Started by Tim-c, Today, 03:54 AM
            0 responses
            3 views
            0 likes
            Last Post Tim-c
            by Tim-c
             
            Started by FrancisMorro, Today, 03:24 AM
            0 responses
            5 views
            0 likes
            Last Post FrancisMorro  
            Working...
            X