Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Creating custom functions

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    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?

    #2
    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"

    Comment


      #3
      Hi Paul,

      That doesn't quite answer my question. If the user wants to build a NinjaScript strategy based on the indicator how would he do that?

      Comment


        #4
        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


          #5
          Paul,

          I'm able to call SMA and other indicators, but not the custom indicator. What reason would cause the custom indicator to be unavailable?

          Comment


            #6
            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 Geovanny Suaza, 02-11-2026, 06:32 PM
            0 responses
            580 views
            0 likes
            Last Post Geovanny Suaza  
            Started by Geovanny Suaza, 02-11-2026, 05:51 PM
            0 responses
            335 views
            1 like
            Last Post Geovanny Suaza  
            Started by Mindset, 02-09-2026, 11:44 AM
            0 responses
            102 views
            0 likes
            Last Post Mindset
            by Mindset
             
            Started by Geovanny Suaza, 02-02-2026, 12:30 PM
            0 responses
            554 views
            1 like
            Last Post Geovanny Suaza  
            Started by RFrosty, 01-28-2026, 06:49 PM
            0 responses
            552 views
            1 like
            Last Post RFrosty
            by RFrosty
             
            Working...
            X