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 charlesugo_1, 05-26-2026, 05:03 PM
    0 responses
    51 views
    0 likes
    Last Post charlesugo_1  
    Started by DannyP96, 05-18-2026, 02:38 PM
    1 response
    142 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    160 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 05-10-2026, 08:12 PM
    0 responses
    96 views
    0 likes
    Last Post CarlTrading  
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    275 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Working...
    X