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 zstheorist, Today, 07:52 PM
        0 responses
        3 views
        0 likes
        Last Post zstheorist  
        Started by pmachiraju, 11-01-2023, 04:46 AM
        8 responses
        149 views
        0 likes
        Last Post rehmans
        by rehmans
         
        Started by mattbsea, Today, 05:44 PM
        0 responses
        5 views
        0 likes
        Last Post mattbsea  
        Started by RideMe, 04-07-2024, 04:54 PM
        6 responses
        33 views
        0 likes
        Last Post RideMe
        by RideMe
         
        Started by tkaboris, Today, 05:13 PM
        0 responses
        5 views
        0 likes
        Last Post tkaboris  
        Working...
        X