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

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.
      BertrandNinjaTrader Customer Service

      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 algospoke, Yesterday, 06:40 PM
          2 responses
          22 views
          0 likes
          Last Post algospoke  
          Started by ghoul, Today, 06:02 PM
          3 responses
          14 views
          0 likes
          Last Post NinjaTrader_Manfred  
          Started by jeronymite, 04-12-2024, 04:26 PM
          3 responses
          45 views
          0 likes
          Last Post jeronymite  
          Started by Barry Milan, Yesterday, 10:35 PM
          7 responses
          21 views
          0 likes
          Last Post NinjaTrader_Manfred  
          Started by AttiM, 02-14-2024, 05:20 PM
          10 responses
          181 views
          0 likes
          Last Post jeronymite  
          Working...
          X