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

Comment