Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Settings in Strategies Window vs Code

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

    Settings in Strategies Window vs Code

    Another question for the experts...

    When you add a strategy to a chart, under General you have Calculate on bar close, and Exit on close, etc ....

    In your code, you can put under Initialize()
    ExitOnClose = false;

    etc... Now, does this just set the default? Or does it ignore any change the user set on the flag in the window where the strategy is turned on and added to the chart? That is, if the user starts the strategy, but changes the flag to true, which is used?

    Wasn't sure how to test this one.

    Thanks guys.

    #2
    Originally posted by Locke View Post
    Another question for the experts...

    When you add a strategy to a chart, under General you have Calculate on bar close, and Exit on close, etc ....

    In your code, you can put under Initialize()
    ExitOnClose = false;

    etc... Now, does this just set the default? Or does it ignore any change the user set on the flag in the window where the strategy is turned on and added to the chart? That is, if the user starts the strategy, but changes the flag to true, which is used?

    Wasn't sure how to test this one.

    Thanks guys.
    Anything in Initialize() can be overridden by the user in the PropertyGrid. If you want to enforce the directive, place it in OnStartup().

    Comment


      #3
      Locke, please see koganam's kind assist below - you can set the defaults this way in Initialize() yes, but user could always override from the UI panel then.

      Comment


        #4
        Thanks for the answers guys. I did notice that if I put it in OnStartUp(), it still gives the user the option to change it to true. In this situation, which will take affect?

        Will it be overridden in OnStartUp() and act as false, but the user thinks they set it to true? I know it's a minor thing...

        Comment


          #5
          Locke,

          Correct, OnStartUp() is called after any changes have been made to the UI panel, when they click Ok to enable it for running. Since this is called after, the OnStartUp() will enforce the new setting being made.
          Cal H.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