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 charlesugo_1, 05-26-2026, 05:03 PM
      0 responses
      57 views
      0 likes
      Last Post charlesugo_1  
      Started by DannyP96, 05-18-2026, 02:38 PM
      1 response
      143 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 05-11-2026, 05:56 AM
      0 responses
      161 views
      0 likes
      Last Post CarlTrading  
      Started by CarlTrading, 05-10-2026, 08:12 PM
      0 responses
      97 views
      0 likes
      Last Post CarlTrading  
      Started by Hwop38, 05-04-2026, 07:02 PM
      0 responses
      276 views
      0 likes
      Last Post Hwop38
      by Hwop38
       
      Working...
      X