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():
// Don't run on primary Data Serie if (BarsInProgress == 0) return;

Comment