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 cmoran13, Yesterday, 01:02 PM
      0 responses
      29 views
      0 likes
      Last Post cmoran13  
      Started by PaulMohn, 04-10-2026, 11:11 AM
      0 responses
      21 views
      0 likes
      Last Post PaulMohn  
      Started by CarlTrading, 03-31-2026, 09:41 PM
      1 response
      160 views
      1 like
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 04-01-2026, 02:41 AM
      0 responses
      95 views
      1 like
      Last Post CarlTrading  
      Started by CaptainJack, 03-31-2026, 11:44 PM
      0 responses
      148 views
      2 likes
      Last Post CaptainJack  
      Working...
      X