Announcement

Collapse
No announcement yet.

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.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    89 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    135 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    68 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by cmoran13, 04-16-2026, 01:02 PM
    0 responses
    119 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    69 views
    0 likes
    Last Post PaulMohn  
    Working...
    X