Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Print statements on Multi-Time-Frame/Instruments

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

    Print statements on Multi-Time-Frame/Instruments

    Hi,

    I am trying to debug my code using print statements but it is very difficult as the print statements that I'm using seem to print for all all instruments that I've included in the script in the State.Configure method within OnStateChange. I've tried to fix this by using the print statements within the: if (BarsInProgress == 0) method but for some reason it is only called on the first bar of the session when I do this. This is all being done in market replay mode.

    How do I only run the print statements for the master instrument?

    #2
    Hi Sudonega, thanks for writing in. The BarsInProgress check is correct. You can filter the master instrument like this:

    if(BarsInProgress == 0)
    {
    Print("Primary Series OnBarUpdate call");
    }

    If you are only getting a print on the first bar of the session that would be caused by something else, like using IsFirstBarOfSession in the code. If this does not resolve, I will need more information on the script you are running.

    Kind regards,
    -ChrisL

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CarlTrading, 03-31-2026, 09:41 PM
    1 response
    47 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    23 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    33 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
    42 views
    0 likes
    Last Post CarlTrading  
    Working...
    X