-Jim
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Instrument.MasterInstrument.Name returning null
Collapse
X
-
Instrument.MasterInstrument.Name returning null
I am trying to write an indicator and am currently using simulated data. Why does Instrument.MasterInstrument.Name return null in the Initialize() method. I need the name of the symbol to create a unique id for storing data in my custom DLL.This needs to be initialized first before any computation can occur. Thanks for your answer.
-JimTags: None
-
Jim, Initialize() does just that-it initializes the instrument and variables and everything else needed to run.
To calculate something just once at the beginning, but not in Initialize():
Code:protected override void OnBarUpdate() { if (CurrentBar == 0) doSomethingOnce(); }AustinNinjaTrader Customer Service
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
576 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
334 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
553 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
551 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment