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 sightcareclickhere, Today, 01:55 PM
                0 responses
                1 view
                0 likes
                Last Post sightcareclickhere  
                Started by Mindset, 05-06-2023, 09:03 PM
                9 responses
                258 views
                0 likes
                Last Post ender_wiggum  
                Started by Mizzouman1, Today, 07:35 AM
                4 responses
                18 views
                0 likes
                Last Post Mizzouman1  
                Started by philmg, Today, 01:17 PM
                1 response
                7 views
                0 likes
                Last Post NinjaTrader_ChristopherJ  
                Started by cre8able, Today, 01:01 PM
                1 response
                9 views
                0 likes
                Last Post NinjaTrader_ChelseaB  
                Working...
                X