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 NullPointStrategies, Today, 05:17 AM
    0 responses
    38 views
    0 likes
    Last Post NullPointStrategies  
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    124 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    64 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    41 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    46 views
    0 likes
    Last Post TheRealMorford  
    Working...
    X