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 Hwop38, 05-04-2026, 07:02 PM
    0 responses
    152 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Started by CaptainJack, 04-24-2026, 11:07 PM
    0 responses
    305 views
    0 likes
    Last Post CaptainJack  
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    244 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    345 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    176 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Working...
    X