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");
}
}
}
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Pairs Trading Execution Issue
Collapse
X
-
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.
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.Code:Last edited by wallabee13; 03-10-2018, 09:11 AM.Tags: None
-
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
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
579 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
334 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
554 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
551 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment