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 Mindset, 04-21-2026, 06:46 AM
    0 responses
    88 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    134 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
    119 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