Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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 itrader46, Today, 09:04 AM
    0 responses
    1 view
    0 likes
    Last Post itrader46  
    Started by timmbbo, Today, 08:59 AM
    0 responses
    1 view
    0 likes
    Last Post timmbbo
    by timmbbo
     
    Started by bmartz, 03-12-2024, 06:12 AM
    5 responses
    33 views
    0 likes
    Last Post NinjaTrader_Zachary  
    Started by Aviram Y, Today, 05:29 AM
    4 responses
    14 views
    0 likes
    Last Post Aviram Y  
    Started by algospoke, 04-17-2024, 06:40 PM
    3 responses
    28 views
    0 likes
    Last Post NinjaTrader_Jesse  
    Working...
    X