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 Mindset, 04-21-2026, 06:46 AM
    0 responses
    88 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    134 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    68 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by cmoran13, 04-16-2026, 01:02 PM
    0 responses
    118 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    67 views
    0 likes
    Last Post PaulMohn  
    Working...
    X