So if the strategy signal is seen, the strategy will wait 2 more bars before entering the position. How can I do this?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
setting up bars
Collapse
X
-
setting up bars
I have a strategy set up, but I want the order to kick in 2 bars after my signal.
So if the strategy signal is seen, the strategy will wait 2 more bars before entering the position. How can I do this?Tags: None
-
Hello Bobbybattles,
Thank you for the note.
Assuming the strategy is running on a daily series, to have an order go out on a delay, you could save the current bar to a variable, along with setting a bool to execute on delay. Then in your strategy you would check if that bool was set to true and CurrentBar was >= xBar+2, and if so, enterLong.
For example,
Code:if(Close[0]>0) {[INDENT]xBar=CurrentBar; enterDelay=true;[/INDENT] }enterDelay will remain set to true, and on the bar after next, the CurrentBar will be equal to xBar+2, thus the strategy will submit an order and then set enterDelay back to false.Code:if(enterDelay==true)[INDENT]if(CurrentBar>=xBar+2) {[INDENT]EnterLong(); enterDelay=false;[/INDENT] }[/INDENT]
Your strategy would need the following variables declared,
Please let us know if you need further assistance.Code:private enterDelay=false; private int xBar;
Alan P.NinjaTrader Customer Service
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
52 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
276 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|

Comment