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 DannyP96, 05-18-2026, 02:38 PM
    1 response
    84 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    143 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 05-10-2026, 08:12 PM
    0 responses
    83 views
    0 likes
    Last Post CarlTrading  
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    256 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    334 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Working...
    X