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 CarlTrading, 03-31-2026, 09:41 PM
|
1 response
131 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
74 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
111 views
1 like
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
89 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment