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 SalmaTrader, 07-07-2026, 10:26 PM
|
0 responses
46 views
0 likes
|
Last Post
by SalmaTrader
07-07-2026, 10:26 PM
|
||
|
Started by CarlTrading, 07-05-2026, 01:16 PM
|
0 responses
22 views
0 likes
|
Last Post
by CarlTrading
07-05-2026, 01:16 PM
|
||
|
Started by CaptainJack, 06-17-2026, 10:32 AM
|
0 responses
14 views
0 likes
|
Last Post
by CaptainJack
06-17-2026, 10:32 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:15 AM
|
0 responses
20 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:15 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:06 AM
|
0 responses
22 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:06 AM
|

Comment