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 Ashkam, 04-29-2024, 09:28 AM
        4 responses
        43 views
        0 likes
        Last Post Ashkam
        by Ashkam
         
        Started by nightstalker, Yesterday, 02:05 PM
        1 response
        29 views
        0 likes
        Last Post NinjaTrader_Eduardo  
        Started by dcriador, Today, 02:09 PM
        0 responses
        5 views
        0 likes
        Last Post dcriador  
        Started by nicthe, Today, 07:38 AM
        4 responses
        22 views
        0 likes
        Last Post bltdavid  
        Started by cmtjoancolmenero, 04-29-2024, 03:40 PM
        30 responses
        98 views
        0 likes
        Last Post cmtjoancolmenero  
        Working...
        X