View Full Version : Adding instrument in Ninja script
orapsdba
10-07-2007, 09:02 PM
I am trying to get the following code working in my Indicator:
Add ( "^TICK", PeriodType.Minute,1);
Getting following error:
No overload for method 'Add' takes 3 arguments.
Any ideas to resolove it ? I am using latest version of NT.
Thanks,
orapsdba
NinjaTrader_Josh
10-07-2007, 09:09 PM
Hi orapsdba,
Multi-time framed/instrument indicators are not currently available. The code you have there will only work for NinjaScript Strategies.
pdawg
10-23-2007, 01:43 AM
OK i ran into this as well for an indicator I was trying to build, hopefully this ability is in 6.5. But as a test I tried adding the follwing line to an existing strategy and got the same error below as well. Her is what I added:
Add("ER 12-07", PeriodType.Tick, 100);
NinjaTrader_Josh
10-23-2007, 01:49 AM
Hmm. That line should work in a NinjaScript Strategy. Did you put it in the Initialize() method? What exactly is the error message you are getting?