protected override void Initialize()
{
// Add a 5 minute Bars object - BarsInProgress index = 1
Add(PeriodType.Minute, 5);
// Add a 100 tick Bars object for the ES 12-06 contract - BarsInProgress index = 2
Add("ES 12-06", PeriodType.Tick, 100);
}
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Adding Bar objects
Collapse
X
-
Adding Bar objects
The help file https://ninjatrader.com/support/help.../nt7/?add3.htm has this example:
This obviously would work back when the "ES 12-06" contract was active, but is there anyway to simply refer to the lead contract automatically? Otherwise, the source code needs to be manually updated every few monthsCode:Tags: None
-
Hello MM345,
There is no documented way of adding a future and having it automatically select the currently traded expiry.
You could use a string input to allow the user running the script to enter the symbol and expiry.
I am currently inquiring with development to see if it is possible to get an instrument object and loop through the rollover dates in NinjaTrader 7.
(This is possible in NinjaTrader 8 with GetInstrument())Chelsea B.NinjaTrader Customer Service
-
Hi MM345,
The following code is not documented or supported, but may help you find what you are looking for.
To find the current expiry for a future:
Code:In #region Variables: private RollOver rollOver; In Initialize(): Instrument anInstrument = Cbi.Instrument.GetObject("ES 03-15"); Print(anInstrument.FullName); bool found = false; for (int i = 1; i < anInstrument.MasterInstrument.RollOverCollection.Count; i++) { if (found == false && anInstrument.MasterInstrument.RollOverCollection[i].ContractMonth > DateTime.Now) { rollOver = anInstrument.MasterInstrument.RollOverCollection[i]; found = true; } } if (found == true) Print(rollOver.ToString()); Add(string.Format("ES {0}", rollOver));Chelsea B.NinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by kinfxhk, 07-14-2026, 09:39 AM
|
0 responses
129 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
87 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 09:50 AM
|
||
|
Started by kinfxhk, 07-13-2026, 07:21 AM
|
0 responses
106 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