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 SalmaTrader, 07-07-2026, 10:26 PM
    0 responses
    50 views
    0 likes
    Last Post SalmaTrader  
    Started by CarlTrading, 07-05-2026, 01:16 PM
    0 responses
    22 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 06-17-2026, 10:32 AM
    0 responses
    16 views
    0 likes
    Last Post CaptainJack  
    Started by kinfxhk, 06-17-2026, 04:15 AM
    0 responses
    22 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 06-17-2026, 04:06 AM
    0 responses
    23 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Working...
    X