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

Inputs sorted alphabetically?

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

    Inputs sorted alphabetically?

    Is there a way to not have the inputs sort alphabetically in the indicators screen?

    #2
    Hi traderT,
    Yes, please review this reference sample here - http://www.ninjatrader-support2.com/...ead.php?t=4770
    BertrandNinjaTrader Customer Service

    Comment


      #3
      TraderT,

      I had the same issue to deal with.

      Number each input like this to establish the listing order.

      [Description("Período")]
      [Category("Parameters")]
      [Gui.Design.DisplayName ("1 Period Integer")]
      public int Periodo
      {
      get { return periodo; }
      set { periodo = Math.Max(1, value); }
      }

      [Description("Ciclo")]
      [Category("Parameters")]
      [Gui.Design.DisplayName ("2 Cycle Integer")]
      public int Cycle
      {
      get { return cycle; }
      set { cycle = Math.Max(1, value); }
      }

      [Description("Coeficiente")]
      [Category("Parameters")]
      [Gui.Design.DisplayName ("3 Coeff Decimal")]
      public double Coeff
      {
      get { return coeff; }
      set { coeff = Math.Max(1, value); }
      }

      [Description("Filtro")]
      [Category("Parameters")]
      [Gui.Design.DisplayName ("4 Filter Decimal")]
      public double Filter
      {
      get { return filter; }
      set { filter = Math.Max(0, value); }
      }

      [Description("Divisor del TickSize")]
      [Category("Parameters")]
      [Gui.Design.DisplayName ("5 SplitTick Decimal")]


      RJay
      RJay
      NinjaTrader Ecosystem Vendor - Innovative Trading Solutions

      Comment


        #4
        RE:

        Thanks all, this will help a lot.

        Comment


          #5
          What parameter is in NT7 equivalent to NT8 CategoryOrder

          in NT8, we can sort categories using special attribute (declared above the indicator class-name line) - [CategoryOrder...]


          is something like that possible in NT7? how can we sort one cat after another cat? like this:


          [Category("Trade Times")]
          [Gui.Design.DisplayName ("smth option")]
          public double .....


          [Category("Trade Amount")]
          [Gui.Design.DisplayName ("smth option")]
          public double .....


          I want the second one in this example, to be i.e. above first category.. or how can i control their order?

          Comment


            #6
            [Category("1) Trade Times")]
            [Gui.Design.DisplayName ("smth option")]
            public double .....


            [Category("2) Trade Amount")]
            [Gui.Design.DisplayName ("smth option")]
            public double .....
            eDanny
            NinjaTrader Ecosystem Vendor - Integrity Traders

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by Lumbeezl, 01-11-2022, 06:50 PM
            31 responses
            817 views
            1 like
            Last Post NinjaTrader_Adrian  
            Started by xiinteractive, 04-09-2024, 08:08 AM
            5 responses
            14 views
            0 likes
            Last Post NinjaTrader_Erick  
            Started by swestendorf, Today, 11:14 AM
            2 responses
            6 views
            0 likes
            Last Post NinjaTrader_Kimberly  
            Started by Mupulen, Today, 11:26 AM
            0 responses
            7 views
            0 likes
            Last Post Mupulen
            by Mupulen
             
            Started by Sparkyboy, Today, 10:57 AM
            1 response
            7 views
            0 likes
            Last Post NinjaTrader_Jesse  
            Working...
            X