Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

how to use BarsInProgress correctly?

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

    how to use BarsInProgress correctly?

    Hey Experts

    I'm new to NT8, so excuse my ignorance.
    I want to understand how BarsInProgress is actually working. I have the following setup:

    protected override void OnStateChange() {
    if (State == State.Configure) {
    AddDataSeries(BarsPeriodType.Minute, 5);
    AddDataSeries(BarsPeriodType.Day, 1);

    }
    }

    protected override void OnBarUpdate() {
    Print(BarsInProgress);
    }

    Knowing that my primary time series is minute candles, I would expect something like this as output:
    0
    0
    0
    0
    0
    1
    0
    0
    0
    0
    0
    1
    ...
    2

    But I only see zero's...

    What am I missing here?

    Thanks in advance and merry Xmas

    #2
    My bad, I made a mistake. I get the result that I expect now...

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CarlTrading, 03-31-2026, 09:41 PM
    1 response
    43 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    21 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    30 views
    1 like
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    50 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    40 views
    0 likes
    Last Post CarlTrading  
    Working...
    X