TIA
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Accessing NT Methods from a Custom Class?
Collapse
X
-
Accessing NT Methods from a Custom Class?
I'm building an indicator where most of the logic is contained in a custom class. As it is now I need to do all my Print() and draw functions by interfacing with the Indicator class. I was wondering if it possible to access methods and properties from the ninja trader namespace from directly from my class?
TIATags: None
-
I am not sure I understood completely. Do you like to use Print() from within a helper class of your indicator (for example)? In this case you could deliver an instance of your indicator (this) to your helper class by the constructor and store it to a variable. Then you could apply printing from your helper class as variable.Print("abc").
Regards
Ralph
Comment
-
Ralph. I am also running into this problem. I am porting a GMDH algorithm from Excel VBA to NinjaScripit. The algorithm is being coded in it's own class so it will be portable within NinjaScript. Debugging and some interface issues would be made much easier if I could gain access to some NinjaScript properties and methods from within the GMDH class.
Not 100% sure what you mean when you say "deliver an instance of your indicator (this) to your helper class ". I will have to read up 'this' and see if I come can arrive at a better understanding of what you are talking about.
Comment
-
If you want to hand over a global variable to a class instance, I would do that with the constructor. The compiler takes care that you never can forget it
. Here is an example:
RegardsCode:public class MyInd : Indicator { private HelperClass helperClass = new HelperClass(this); } public class HelperClass { private MyInd myInd; public HelperClass(MyInd mi) { myInd = mi; } private void Print(string str) { myInd.Print(str); } }
Ralph
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
579 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
554 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