I have attempted to use IsFirstTickOfBar to get in on the first tick of the bar following the entry criteria (The strategy is modiified to calculate on each tick and the calculations are modified to look back one bar). This does not seem to work and the strategy still enters on the close of the bar following the entry criteria being met.
Is there a way of adding a secondary bar series of one tick and so when the entry criteria is met on the primary data series the position is entered immediately on the secondary dataseries?
So instead of using EnterLong() we use the overload:
EnterLong(int barsInProgressIndex, int quantity, string signalName)
where barsInProgressIndex = 1 referring to the secondary dataseries. Would barsinprogress need to equal 1 (secondary data series) to enter a position on the secondary dataseries?

Comment