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 cre8able, Today, 01:16 PM
        2 responses
        9 views
        0 likes
        Last Post cre8able  
        Started by chbruno, 04-24-2024, 04:10 PM
        3 responses
        48 views
        0 likes
        Last Post NinjaTrader_Gaby  
        Started by samish18, Today, 01:01 PM
        1 response
        7 views
        0 likes
        Last Post NinjaTrader_LuisH  
        Started by WHICKED, Today, 12:56 PM
        1 response
        9 views
        0 likes
        Last Post NinjaTrader_Gaby  
        Started by WHICKED, Today, 12:45 PM
        1 response
        11 views
        0 likes
        Last Post NinjaTrader_Gaby  
        Working...
        X