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 Mindset, 04-21-2026, 06:46 AM
    0 responses
    90 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    137 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
    120 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    69 views
    0 likes
    Last Post PaulMohn  
    Working...
    X