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 CarlTrading, 03-31-2026, 09:41 PM
    1 response
    80 views
    1 like
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    40 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    63 views
    2 likes
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    63 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    54 views
    0 likes
    Last Post CarlTrading  
    Working...
    X