Thanks
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Wait x bars after signal to trade
Collapse
X
-
Wait x bars after signal to trade
Apologies for this simple and probably redundant question. How can I wait x bars after a signal to go long or short, such as from a moving average crossover.
ThanksTags: None
-
Hello rgreenberg,
Thanks for your post.
You can use a bool to indicate that your condition has occurred and then save the bar number where the condition occurred. Then in the next condition, test for the bool state and check the current bar to the saved bar to evaluate how many bars have passed.
For example:
if (//your crossover condition)
{
myCrossover = true; // a bool variable you previously created called myCrossover set to false.
mySavedBar = CurrentBar; // an Int variable you previously created called mySavedBar to hold the bar number when the cross ocurred.
}
later in your code:
if (myCrossover && CurrentBar - mySavedBar >= 10) // wait for 10 bars
{
// do something here
myCrossover = false; // reset the bool so this only executes once per condition.
}
-
Paul,
Thank you for your reply. I now know about using the bool to specify conditions. Thanks to jr123 as well. I guess I am surprised that Ninjascript did not cover this seemly simple concept with a "BarsSinceSignal" type command.
Thanks again.
rg
Comment
-
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
61 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
34 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
198 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
364 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
283 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|

Comment