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

Pairs Trading Execution Issue

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

    Pairs Trading Execution Issue

    I'm attempting a simple pairs trade strategy to enter two symbols the same day and exit the same day. I'm getting a few times where entry/exit happens different days and I'm not sure how. Please see code below and assist. Thanks.

    Code:
    if (Math.Abs(MyDivergencePrice(days,pctchange,symbol1,symbol2).difference[0]) > pctchange){
    				qty1 = value / Closes[0][0];
    				qty2 = value / Closes[1][0];
    				lqty1 = Convert.ToInt32(qty1);
    				lqty2 = Convert.ToInt32(qty2);
    				if (Positions[0].MarketPosition == MarketPosition.Flat && Positions[1].MarketPosition == MarketPosition.Flat)	{
    				if (MyDivergencePrice(days,pctchange,symbol1,symbol2).primary[0] < MyDivergencePrice(days,pctchange,symbol1,symbol2).secondary[0]){
    					EnterLong(0,lqty1,"Long");
    					EnterShort(1,lqty2,"Short");
    				}
    				else {
    					EnterLong(1,lqty2,"Long");
    					EnterShort(0,lqty1,"Short");
    				}
    				}
    			}
    Theoretically, running a backtest on a pair, SPY/QQQ should produce the same results as running QQQ/SPY, which it's not, so that's where I'm having trouble. I discovered that some entries are not happening on same day.
    Last edited by wallabee13; 03-10-2018, 09:11 AM.

    #2
    Hello wallabee13,

    Is this in real-time or historical?

    Are the instruments using the same session template?

    Have you enabled TraceOrders to ensure the orders are being submitted at the same time?
    Have you added prints to OnOrderUpdate to see if the orders are reaching accepted / working / filled states?
    Chelsea B.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by drewski1980, Today, 08:24 AM
    0 responses
    3 views
    0 likes
    Last Post drewski1980  
    Started by rdtdale, Yesterday, 01:02 PM
    2 responses
    17 views
    0 likes
    Last Post rdtdale
    by rdtdale
     
    Started by TradeSaber, Today, 07:18 AM
    0 responses
    7 views
    0 likes
    Last Post TradeSaber  
    Started by PaulMohn, Today, 05:00 AM
    0 responses
    10 views
    0 likes
    Last Post PaulMohn  
    Started by ZenCortexAuCost, Today, 04:24 AM
    0 responses
    6 views
    0 likes
    Last Post ZenCortexAuCost  
    Working...
    X