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 cmoran13, 04-16-2026, 01:02 PM
    0 responses
    46 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    28 views
    0 likes
    Last Post PaulMohn  
    Started by CarlTrading, 03-31-2026, 09:41 PM
    1 response
    163 views
    1 like
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    98 views
    1 like
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    158 views
    2 likes
    Last Post CaptainJack  
    Working...
    X