Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

custom object values from secondary data series

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

    custom object values from secondary data series

    Hello,

    I have a strategy with a primary and a secondary data series. I have the following as a condition on the primary series:

    bool longCondDeltaA = GCD.DeltaClose[0] > 0;

    GCD is a cumulative delta indicator that is part of the Gomi framework. The strategy and this condition currently works fine. However, I'd like to check this condition on the secondary data series. Is it possible? If so, how is best/easiest way to go about it?

    I considered simply checking for a secondary series close in OnBarUpdate, setting a value, and then using the value when the primary series closes (where the actual condition check takes place). Hope this makes sense, please ask for necessary clarification.

    #2
    Coolmoss,

    Thank you for your note.

    You would want to use the BarsInProgress to filter out the BarObject update and then nest your logic inside of it.

    if(BarsInProgress == 1)
    {
    // Nest logic in here for the secondary data series
    }

    http://www.ninjatrader.com/support/h...inprogress.htm
    Cal H.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    558 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    324 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    101 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    545 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    547 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X