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 charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
51 views
0 likes
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
142 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
160 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
96 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
275 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|

Comment