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

Problem parameters panel right strategy

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

    Problem parameters panel right strategy

    My Strategy:
    ...................
    #region Variables

    privateint distMaxPointBar = 30;
    privateint distMaxDivergBar=50;

    #endregion

    .................................................. ..................
    [Description("Distanza Massima Dei Point extremi max e min")]
    [Category(
    "Divergenze Setting")]
    publicint DistMaxPointBar
    {
    get { return distMaxPointBar; }
    set { distMaxPointBar = Math.Max(10, value); }
    }
    [Description(
    "Distanza Massima Divergenza barre")]
    [Category(
    "Divergenze Setting")]
    publicint DistMaxDivergBar
    {
    get { return distMaxDivergBar; }
    set { distMaxDivergBar = Math.Max(10, value); }
    }

    I don't see paramater in the right panel ....



    #2
    turbofib, please try changing Category to GridCategory and then recompile / recheck.
    BertrandNinjaTrader Customer Service

    Comment


      #3
      thanks you.now run..
      but....




      What is the difference between them?

      Comment


        #4
        For properties that you wanted to see in the grid please only use GridCategory.
        BertrandNinjaTrader Customer Service

        Comment


          #5
          i have indicator ...that use in Category...and I see everything perfectly

          Comment


            #6
            Could be the case for some scenarios, ultimately GridCategory is what should be used.
            BertrandNinjaTrader Customer Service

            Comment


              #7
              Ok...thanks

              Comment


                #8
                Originally posted by turbofib View Post
                i have indicator ...that use in Category...and I see everything perfectly
                You would, but if, and only if, the "Category" is called "Parameters". Nothing else. It is an unsupported holdover from NT 6.5. We can but hope that they do not change it.

                Comment

                Latest Posts

                Collapse

                Topics Statistics Last Post
                Started by bill2023, Yesterday, 08:51 AM
                7 responses
                42 views
                0 likes
                Last Post bill2023  
                Started by yertle, Today, 08:38 AM
                6 responses
                25 views
                0 likes
                Last Post ryjoga
                by ryjoga
                 
                Started by algospoke, Yesterday, 06:40 PM
                2 responses
                24 views
                0 likes
                Last Post algospoke  
                Started by ghoul, Today, 06:02 PM
                3 responses
                16 views
                0 likes
                Last Post NinjaTrader_Manfred  
                Started by jeronymite, 04-12-2024, 04:26 PM
                3 responses
                46 views
                0 likes
                Last Post jeronymite  
                Working...
                X