Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Prevent strategy to run on primary data serie

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

    Prevent strategy to run on primary data serie

    Hi,

    my strategy creates drawing objects on my chart, but I would like to make sure that it never runs on the primary data serie (the one from the chart timeframe). Is this the best way to do it? I am adding these lines at the start of OnBarUpdate():

    Code:
    // Don't run on primary Data Serie
    if (BarsInProgress == 0)
    return;
    Thanks for your help!

    #2
    Hello RT001,

    Yes tat would be the easiest way, return prevents the following lines from being executed. BarsInProgress 0 would be the primary series.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    67 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 05-10-2026, 08:12 PM
    0 responses
    42 views
    0 likes
    Last Post CarlTrading  
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    202 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Started by CaptainJack, 04-24-2026, 11:07 PM
    0 responses
    366 views
    0 likes
    Last Post CaptainJack  
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    284 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Working...
    X