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 NullPointStrategies, Today, 05:17 AM
    0 responses
    52 views
    0 likes
    Last Post NullPointStrategies  
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    130 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    70 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    43 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    48 views
    0 likes
    Last Post TheRealMorford  
    Working...
    X