Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Creating custom functions
Collapse
X
-
Creating custom functions
I have some custom indicators in NinjaScript. A user wants to be able to use the indicators in a strategy. Is there a way I can create a function he can call from the strategy and distribute this while still keeping the code protected?Tags: None
-
Hello dbtrader,
Thanks for your post.
You would want to export your indicators as assemblies to prevent access to the source code. The process is covered in the helpguide: http://ninjatrader.com/support/helpG...stribution.htm see the section, "Exporting NinjaScript Indicators or Strategies as Assembly"
-
Hello dbtrader,
Thanks for your reply.
To use an indicator with a strategy you would use the method and the parameters.
Here is an example using the simple moving average indicator SMA
double smaoutput = SMA(20)[0]; // save current value of 20 period sma
Print ("Currentbar:" +CurrentBar+" SMA(20) value: " +smaoutput);
or to use the indicator directly in the string
Print (("Currentbar:" +CurrentBar+" SMA(20) value: "+SMA(20)[0]);
If you want to have the strategy also display the indicator, you would use the Add() method http://ninjatrader.com/support/helpGuides/nt7/?add2.htm
Comment
-
Hello,
Thanks for your reply.
Without further information it would be difficult to say. I am assuming this is an indicator that you have created and exported with security discussed earlier in this thread. If you would like to you can send in your exported indicator and I will be glad to review adding it to a strategy. Send to PlatFormSupport[at]NinjaTrader[dot]Com with atten: Paul and link: http://ninjatrader.com/support/forum...ad.php?t=75585
Comment
Latest Posts
Collapse
Topics | Statistics | Last Post | ||
---|---|---|---|---|
Started by abelsheila, 05-14-2025, 07:38 PM
|
1 response
23 views
0 likes
|
Last Post
![]()
by hglover945
Yesterday, 08:17 AM
|
||
Started by nailz420, 05-14-2025, 09:14 AM
|
1 response
48 views
0 likes
|
Last Post
|
||
Started by NinjaTrader_Brett, 05-12-2025, 03:19 PM
|
0 responses
304 views
1 like
|
Last Post
|
||
Started by domjabs, 05-12-2025, 01:55 PM
|
2 responses
61 views
0 likes
|
Last Post
![]()
by domjabs
05-12-2025, 02:50 PM
|
||
Started by Morning Cup Of Trades, 05-12-2025, 11:50 AM
|
1 response
72 views
0 likes
|
Last Post
|
Comment