Thanks
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
A method to call the first tick of a new session in a tick by tick Strategy ?
Collapse
X
-
A method to call the first tick of a new session in a tick by tick Strategy ?
There's a "FirstTickOfBar" for regular charts which works ok. I wish a method like that but for a Chart or Strategy that go tick by tick, because it's obvious in this kind of timeframe, it'll be always "FirstTickOfBar" = True. I'm trying to set flags and other things that don't work quite well. Any suggestion would be highly appreciated.
ThanksTags: None
-
Hello pstrusi,
Thanks for your post.
You can use Bars.FirstBarOfSession to detect when the session begins: https://ninjatrader.com/support/help...rofsession.htm
You can then combine them to detect the first tick of the first bar of the session.
if (Bars.FirstBarOfSession && FirstTickOfBar)
{
// do something
}
- Likes 1
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by kinfxhk, 07-14-2026, 09:39 AM
|
0 responses
125 views
0 likes
|
Last Post
by kinfxhk
07-14-2026, 09:39 AM
|
||
|
Started by kinfxhk, 07-13-2026, 10:18 AM
|
0 responses
105 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 10:18 AM
|
||
|
Started by kinfxhk, 07-13-2026, 09:50 AM
|
0 responses
85 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 09:50 AM
|
||
|
Started by kinfxhk, 07-13-2026, 07:21 AM
|
0 responses
105 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 07:21 AM
|
||
|
Started by kinfxhk, 07-11-2026, 02:11 AM
|
0 responses
85 views
0 likes
|
Last Post
by kinfxhk
07-11-2026, 02:11 AM
|

Comment