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 NullPointStrategies, Yesterday, 05:17 AM
    0 responses
    58 views
    0 likes
    Last Post NullPointStrategies  
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    133 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    73 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