Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
What's the problem if I add enterLong() inside of Indicator() instead of Stragtegy()?
Collapse
X
-
What's the problem if I add enterLong() inside of Indicator() instead of Stragtegy()?
https://ninjatrader.com/support/help...vel_ii_dat.htm has sample scripts for level 2 book. The book is implemented in the space of Indicator(). What if I add EnterLong() inside of OnBarUpdate() under Indicator()? Is this doable or I have to call EnterLong() under Strategy()? Thanks.Tags: None
-
You should receive a compilation error.Originally posted by localappleseed View PostWhat if I add EnterLong() inside of OnBarUpdate() under Indicator()?
Did you try it?Originally posted by localappleseed View PostIs this doable or I have to call EnterLong() under Strategy()?
The 'Indicator' class does not provide that method.
Think about it:
When your code does this,
your class 'MyXXX' inherits all the methods provided by the base class 'Indicator'.Code:namespace NinjaTrader.NinjaScript.[COLOR=#e74c3c]Indicators[/COLOR] { public class MyXXX : [COLOR=#e74c3c]Indicator[/COLOR] { ... } }
The 'Indicator' class does not have a method called 'EnterLong', so you should
receive a compilation error if you do that.
On other other hand,
When your code does this,
your class 'MyXXX' inherits all the methods provided by the base class 'Strategy'.Code:namespace NinjaTrader.NinjaScript.[COLOR=#e74c3c]Strategies[/COLOR] { public class MyXXX : [COLOR=#e74c3c]Strategy[/COLOR] { ... } }
The 'Strategy' class does have a method called 'EnterLong', so no error occurs.
Btw, the exact same class name 'MyXXX' is allowed -- this is not an error.
Why? Because the two 'MyXXX' classes are in different namespaces.
It's a bit confusing, because the base classes 'Indicator' and 'Strategy' provide
a huge amount of overlap in the methods they provide -- for example, both
classes have methods called 'Print', 'Alert', 'OnBarUpdate', etc etc.
But only 'Strategy' provides the order methods.
-
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
90 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
137 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
68 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|
||
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
120 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
71 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|

Comment