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

Optimization and Strategy States

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

    Optimization and Strategy States

    Hi - I have some code in my script that should only be run once - where certain variables/properties should only be instantiated once. I have IsInstantiatedOnEachOptimizationIteration set to false in the SetDefaults state. The DataLoaded still gets called multiple times during optimization. And, my property is nulled out in each DataLoaded section. Below is a snippet of my code in the DataLoaded section, where my property PositionManager is always null, and gets reset. I am not sure what I am doing wrong, or if I am misunderstanding the documentation. Thanks in advance!

    if (this.PositionManager == null)
    {
    this.PositionManager = new PositionManger(this);
    }

    #2
    Hi szayedoud, thanks for your question.

    All of the backtests that run during an optimization are run in parallel on separate threads, so all class objects must be reset in State.DataLoaded. Unfortunately, an object can't be shared amongst all optimization backtests because of this. There's an example of resetting your class variables on the documentation page.

    Please let me know if I can assist any further.
    Chris L.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by DJ888, Today, 10:57 PM
    0 responses
    1 view
    0 likes
    Last Post DJ888
    by DJ888
     
    Started by MacDad, 02-25-2024, 11:48 PM
    7 responses
    158 views
    0 likes
    Last Post loganjarosz123  
    Started by Belfortbucks, Today, 09:29 PM
    0 responses
    7 views
    0 likes
    Last Post Belfortbucks  
    Started by zstheorist, Today, 07:52 PM
    0 responses
    7 views
    0 likes
    Last Post zstheorist  
    Started by pmachiraju, 11-01-2023, 04:46 AM
    8 responses
    151 views
    0 likes
    Last Post rehmans
    by rehmans
     
    Working...
    X