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 abelsheila, 05-14-2025, 07:38 PM
            1 response
            23 views
            0 likes
            Last Post hglover945  
            Started by nailz420, 05-14-2025, 09:14 AM
            1 response
            48 views
            0 likes
            Last Post NinjaTrader_ChristopherJ  
            Started by NinjaTrader_Brett, 05-12-2025, 03:19 PM
            0 responses
            304 views
            1 like
            Last Post NinjaTrader_Brett  
            Started by domjabs, 05-12-2025, 01:55 PM
            2 responses
            61 views
            0 likes
            Last Post domjabs
            by domjabs
             
            Started by Morning Cup Of Trades, 05-12-2025, 11:50 AM
            1 response
            72 views
            0 likes
            Last Post NinjaTrader_ChristopherJ  
            Working...
            X