Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Including Indicator's UserDefinedMethods in Strategies

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

    Including Indicator's UserDefinedMethods in Strategies

    Right now, I have to replicate the functions in my indicator UserDefinedMethods into Strategy UserDefinedMethods. Is there a way to directly reference Indicator's UserDefinedMethods from strategies? Tnx.

    NT7

    #2
    Hello stevenev1,

    Thank you for your note.

    This would not be supported in NT7 however this would be very easy in NT8 using an addon. Below would be an example of how you could accomplish this in NT8,


    Please let us know if you need further assistance.
    Alan P.NinjaTrader Customer Service

    Comment


      #3
      Originally posted by stevenev1 View Post
      I have to replicate the functions <in one file to another file> ...
      WinMerge is your friend.

      Comment


        #4
        It depends how well you know C# programming.

        Study bin/Custom/Strategy/@Strategy.cs very carefully.
        (Hint: Can you understand the significance of the "LeadIndicator" property?)

        Try adding this code to your strategy file,

        Code:
          private Indicator.Indicator myfuncs = null;
        
          protected override void OnStartUp()
          {
            myfuncs = (Indicator.Indicator)LeadIndicator;
            myfuncs.HelloWorld();
          }
        Then add this "HelloWorld" code to your bin/Custom/Indicator/UserDefinedMethods.cs file,

        Code:
         public void HelloWorld()
         {
           Print("Hello World");
         }
        Open an OutputWindow and run your strategy.

        Enjoy!

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Mindset, 04-21-2026, 06:46 AM
        0 responses
        101 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by M4ndoo, 04-20-2026, 05:21 PM
        0 responses
        144 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Started by M4ndoo, 04-19-2026, 05:54 PM
        0 responses
        71 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Started by cmoran13, 04-16-2026, 01:02 PM
        0 responses
        125 views
        0 likes
        Last Post cmoran13  
        Started by PaulMohn, 04-10-2026, 11:11 AM
        0 responses
        79 views
        0 likes
        Last Post PaulMohn  
        Working...
        X