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 cmoran13, 04-16-2026, 01:02 PM
|
0 responses
37 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
23 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|
||
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
162 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
98 views
1 like
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
152 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|

Comment