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 NullPointStrategies, Yesterday, 05:17 AM
    0 responses
    62 views
    0 likes
    Last Post NullPointStrategies  
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    134 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    75 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    45 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    50 views
    0 likes
    Last Post TheRealMorford  
    Working...
    X