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, 05-11-2026, 05:56 AM
    0 responses
    52 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 05-10-2026, 08:12 PM
    0 responses
    29 views
    0 likes
    Last Post CarlTrading  
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    194 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Started by CaptainJack, 04-24-2026, 11:07 PM
    0 responses
    355 views
    0 likes
    Last Post CaptainJack  
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    274 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Working...
    X