Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Strategy Using Custom Methods from Addon

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

    Strategy Using Custom Methods from Addon

    I am creating a custom partial class to handle to hold some code I will be reusing through out several strategies. But when i call the custom methods, it seems the strategy does not execute the code. No orders are placed and I do not get any errors in the log nor output screen.

    snippet from my addon file:
    PHP Code:
    namespace NinjaTrader.NinjaScript.Strategies
    {
        public partial class RemoteControl : Strategy
        {
            
            // This can be accessed from within another addon with MySharedMethodsAddonExample.SharedDouble
            // or can be accessed from any script using NinjaTrader.NinjaScript.AddOns.MySharedMethods.SharedDouble
            
            public static DateTime lastWriteAlive
            { get; set; }
    
            public void BuyBid_rc(int ordersize, double Bid, string SignalName)
            {
            EnterLongLimit(ordersize,Bid, SignalName);        
            }
            
            public void SellAsk_rc(int ordersize, double Ask, string SignalName)
            {
            EnterShortLimit(ordersize,Ask,SignalName);
            }
        
        } 
    
    Snippet from my strategy referencing the custom partial class

    PHP Code:
    private RemoteControl RC;
    RC    = new RemoteControl();
    
     if (GRUp)
             {
             if (!(DrawObjects["DotUp" + CurrentBar] != null && DrawObjects["DotUp" + CurrentBar].GetType().Name == "Dot"))
                    Draw.Dot(this, "DotUp" + CurrentBar, true, 0, GetCurrentAsk(), Brushes.Blue);
                
             
                 Draw.VerticalLine(this, "Vline" + CurrentBar, 0, Brushes.LightBlue);
               // EnterLong(0,orderSize,"G2Up");
                 RC.BuyBid_rc(orderSize,GetCurrentBid(),"G2Up");
             }
             
             
               if (GRDn)
                {
                if (!(DrawObjects["DotDn" + CurrentBar] != null && DrawObjects["DotDn" + CurrentBar].GetType().Name == "Dot"))
                         Draw.Dot(this, "DotDn" + CurrentBar, true, 0, GetCurrentBid(), Brushes.Red);
                          
                   Draw.VerticalLine(this, "Vline" + CurrentBar, 0, Brushes.PeachPuff);
                RC.SellAsk_rc(orderSize,GetCurrentAsk(),"G2Dn");
                    //EnterShort(0,orderSize,"G2Dn");
                 } 
    
    the strategy runs correctly if uncomment the original Entry orders.

    #2
    Why does RemoteControl inherit from Strategy?

    Is the RemoteControl class a strategy?

    No, it's not.

    It's just a plain old ordinary helper class.

    When defining RemoteControl, it should be redesigned with a constructor to accept the 'this' object, so that it can call methods from the Strategy object it is being used by.

    Check out the first post from this thread. Download the OP's attached code file and study his helper class called ExitManager. You need to borrow the idea behind this technique and do the same for your RemoteControl class.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    571 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    331 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    101 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    549 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    549 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X