2 problems have appeared with NT7
Problem 1:
Like indicated here: http://www.ninjatrader-support2.com/...ad.php?t=22023
you can't instantiate an indicator from another indicator in the Initialize() method. Proposed solution code is to move code to OnBarUpdate().
This is not very cool because
1. Well, instantiation of an indicator is not Bar code, it's an initialization, so it should logically be in Initialize() method
2. There are some things that can't be done in OnBarUpdate(), for instance add plots. So in that case you can't move the code to OnBarUpdate(). So it's really not equivalent.
Problem 2
The Instrument is null on the instantiated indicator. I believe this worked in Beta3 but I'm not 100% sure.
This bug is critical as you can't use properties like TickSize.

Comment