Is this possible?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Add
Collapse
X
-
Add
I have an indicator that runs on a TF chart and accesses the ES to determine trend direction. I want to ADD() the ES contract in the Initialize section for the same contract date as the TF chart that the indicator is running on. So when there is a rollover on the TF, the ES contract that is accessed internally is the same contact date.
Is this possible?Tags: None
-
Hello FCatan,
Please note we do not recommend dynamically adding data series based on information from the primary data series in the Initialize() method, but this is how you might go about doing this:
This code makes sure the primary data series starts with TF and is 8 characters long, then adds the ES with the last 6 characters of the primary data series' name (ex. " 06-15")Code:if(Instrument.FullName.Length == 8 && Instrument.FullName.Substring(0, 2) == "TF") Add("ES" + Instrument.FullName.Substring(2, 6), PeriodType.Minute, 60);
If you have any questions, please let us know.Michael M.NinjaTrader Quality Assurance
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
83 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
45 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
65 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
68 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
56 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment