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 Aviram Y, Today, 05:29 AM
          4 responses
          11 views
          0 likes
          Last Post Aviram Y  
          Started by algospoke, 04-17-2024, 06:40 PM
          3 responses
          27 views
          0 likes
          Last Post NinjaTrader_Jesse  
          Started by bmartz, 03-12-2024, 06:12 AM
          3 responses
          31 views
          0 likes
          Last Post NinjaTrader_Zachary  
          Started by gentlebenthebear, Today, 01:30 AM
          1 response
          8 views
          0 likes
          Last Post NinjaTrader_Jesse  
          Started by cls71, Today, 04:45 AM
          1 response
          7 views
          0 likes
          Last Post NinjaTrader_ChelseaB  
          Working...
          X