Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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
            
    getset; }

            public 
    void BuyBid_rc(int ordersizedouble Bidstring SignalName)
            {
            
    EnterLongLimit(ordersize,BidSignalName);        
            }
            
            public 
    void SellAsk_rc(int ordersizedouble Askstring 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" CurrentBartrue0GetCurrentAsk(), Brushes.Blue);
                
             
                 
    Draw.VerticalLine(this"Vline" CurrentBar0Brushes.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" CurrentBartrue0GetCurrentBid(), Brushes.Red);
                          
                   
    Draw.VerticalLine(this"Vline" CurrentBar0Brushes.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 kaywai, 09-01-2023, 08:44 PM
    5 responses
    602 views
    0 likes
    Last Post NinjaTrader_Jason  
    Started by xiinteractive, 04-09-2024, 08:08 AM
    6 responses
    22 views
    0 likes
    Last Post xiinteractive  
    Started by Pattontje, Yesterday, 02:10 PM
    2 responses
    20 views
    0 likes
    Last Post Pattontje  
    Started by flybuzz, 04-21-2024, 04:07 PM
    17 responses
    230 views
    0 likes
    Last Post TradingLoss  
    Started by agclub, 04-21-2024, 08:57 PM
    3 responses
    17 views
    0 likes
    Last Post TradingLoss  
    Working...
    X