Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Bars.GetDayBar
Collapse
X
-
Hello Delta007,
Thank you for your post.
You would need to check BarsInProgress before Bars.GetDayBar(), for example:
Code:if(BarsInProgress == 1 && Bars.GetDayBar(1) != null) { Print(BarsInProgress.ToString() + " " + Bars.GetDayBar(1).Close.ToString()); } if(BarsInProgress == 0 && Bars.GetDayBar(1) != null) { Print(BarsInProgress.ToString() + " " + Bars.GetDayBar(1).Close.ToString()); }
-
Hello Delta007,
Thank you for your response.
You could use Closes[1][0] for the close of the secondary bar series. For information on using multiple instrument and time frames in your code please visit the following link: http://www.ninjatrader.com/support/h...nstruments.htm
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by kinfxhk, 07-14-2026, 09:39 AM
|
0 responses
127 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
86 views
0 likes
|
Last Post
by kinfxhk
07-11-2026, 02:11 AM
|

Comment