Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Adding a new Parameter problem

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

    Adding a new Parameter problem

    My strategy has 3 user parameters and I'm trying to add a 4th parameter. I get this error:
    "Your strategy holds one or more recursive properties which could cause NinjaTrader to crash: displaySomething"
    "Do you want to edit these properties?" Yes No

    Once I add the code below, even if I comment out the code with "//" I still get the same error - I have to go back to a previous version. Something's crazy here. Here's the code:

    public class RDMb6 : Strategy
    {
    ...
    private bool displaySomething = true;
    ...
    }
    ...
    #region Properties
    [Desription("Display Something")]
    [Category("Parameters")]
    public bool displaySomething
    {
    get { return displaySomething; }
    set { displaySomething = value; }
    }
    #endregion

    #2
    Found it!

    Sometimes just writing a question forces you to find the answer. The answer is this function name has to be different from the parameter: I just capitalized the name DisplaySomething and it works:

    #region Properties
    [Desription("Display Something")]
    [Category("Parameters")]
    public bool DisplaySomething
    {
    get { return displaySomething; }
    set { displaySomething = value; }
    }

    Maybe it would be clearer to name it displaySomethingFunc.

    -Dean

    Comment


      #3
      Glad you figured it out. The public property name is generally capitalized.
      Josh P.NinjaTrader Customer Service

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      558 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      324 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      101 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      545 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      547 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X