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 sidlercom80, 10-28-2023, 08:49 AM
    167 responses
    2,260 views
    0 likes
    Last Post jeronymite  
    Started by warreng86, 11-10-2020, 02:04 PM
    7 responses
    1,361 views
    0 likes
    Last Post NinjaTrader_Manfred  
    Started by Perr0Grande, Today, 08:16 PM
    0 responses
    5 views
    0 likes
    Last Post Perr0Grande  
    Started by elderan, Today, 08:03 PM
    0 responses
    9 views
    0 likes
    Last Post elderan
    by elderan
     
    Started by algospoke, Today, 06:40 PM
    0 responses
    10 views
    0 likes
    Last Post algospoke  
    Working...
    X