Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

cumulativeDelta by minute bar

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

    cumulativeDelta by minute bar

    Hello Support - Team,

    i like to print the delta only for each minute bar but i got it for all ticks, whats wrong?

    ...

    else if (State == State.Configure)
    {
    AddDataSeries(Data.BarsPeriodType.Tick, 1);
    }
    else if (State == State.DataLoaded)
    {
    cumulativeDelta = OrderFlowCumulativeDelta(CumulativeDeltaType.BidAs k, CumulativeDeltaPeriod.Bar, 0);
    }


    protected override void OnBarUpdate()
    {

    if (State == State.Historical)
    {
    return;
    }


    Print("Delta Close: " + cumulativeDelta.DeltaClose[0]);


    }

    #2
    Hello teafortwo,

    Thanks for your post.

    The reason why it prints on each tick is because you have not segmented your code to only run when the chart bars/primary bars have called OnBarUpdate(). Each data series, when added to a script, will call the OnBarUpdate() method. You can segment your code using BarsInProgress which will contain the number of the data series that has called OnBarUpdate(). BarsInProgress will be 0 (zero) when the chart/primary bars call the method. The BarsInProgress will equal 1 when the first added data series calls OnBarUpdate().

    Also, you will need additional code to keep your OrderFlow data synchronized with the chart bars/Primary bars.

    Please see the help guide example, "Calling the OrderFlowCumulativeDelta() method by reference" on this page as it will show how to segment by BarsInProgress as well as how to update the secondary series (to keep it in sync) https://ninjatrader.com/support/help...ive_delta2.htm

    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