Thank you.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
last tick of bar
Collapse
X
-
Hello,
There wouldn't be a specific way to get the Last tick of a bar as far as I am aware. The tick that opens a bar is the same tick that closes a bar so the events are somewhat the same.
For price values, generally, you would wait for the first tick of a bar and reference the 1 Bars Ago value on the tick series to get the Last tick of the last bars price.
I look forward to being of further assistance.
-
This would not work for minute, volume, range or renko bars, but for tick bars you can simply count the ticks. However, this is only possible, if the indicator is set to Calculate.OnEachTick or if it is used in tick replay mode.Originally posted by imalil View PostUsing tick charts, is there a way to check for the last tick of the bar? Looking for the tick before isFirstTickOfBar is true.
Thank you.
The code is not tested. I just wanted to show how this could be done.Code:bool isLastTickOfBar = false; if(BarsArray[0].BarsPeriod.BarsPeriodType == BarsPeriodType.Tick && (Calculate == Calculate.OnEachTick || IsTickReplays[0] == true)) { if(IsFirstTickOfBar) tickCount = 1; else tickCount = tickCount + 1; if(tickCount == BarsPeriods[0].Value) isLastTickOfBar = true; }Last edited by Harry; 07-16-2017, 01:47 PM.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
163 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
313 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
245 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
350 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
179 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|

Comment