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 samish18, 04-17-2024, 08:57 AM
        17 responses
        64 views
        0 likes
        Last Post NinjaTrader_BrandonH  
        Started by rocketman7, Today, 02:12 AM
        2 responses
        16 views
        0 likes
        Last Post rocketman7  
        Started by briansaul, Today, 05:31 AM
        1 response
        12 views
        0 likes
        Last Post NinjaTrader_Jesse  
        Started by PaulMohn, Today, 03:49 AM
        1 response
        12 views
        0 likes
        Last Post NinjaTrader_BrandonH  
        Started by frslvr, 04-11-2024, 07:26 AM
        6 responses
        106 views
        1 like
        Last Post NinjaTrader_BrandonH  
        Working...
        X