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 CarlTrading, 03-31-2026, 09:41 PM
|
1 response
133 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
75 views
1 like
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
117 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
113 views
1 like
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
90 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment