IsFirstTickOfBar
<< Click to Display Table of Contents >> IsFirstTickOfBar |
![]() ![]() ![]() |
Indicates if the incoming tick is the first tick of a new bar. This property is only of value in scripts that run tick by tick which is when the Calculate property is set to Calculate.OnEachTick or Calculate.OnPriceChange.
Warning: This property should NOT be accessed outside of the OnBarUpdate() method. |
Note: If a bar type is set up to remove the last bar on a chart, IsFirstTickOfBar will automatically be set to True. |
This property returns true if the incoming tick is the first tick of a new bar; otherwise, false.
IsFirstTickOfBar
Tip: In NinjaTrader's event driven framework, bar closures are signaled by the tick that opens the next bar. The price of the last tick of a bar can be referenced by checking Close[1] on IsFirstTickOfBar. For volume and tick based bars, Bars.TickCount and Volume[0] can be referenced to see if the number of ticks / volume meet the criteria to build a new bar. |
// On a tick by tick strategy the only way you know when a bar is closed is when |