Announcement

Collapse
No announcement yet.

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 Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    558 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    324 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
    545 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    547 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X