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 NullPointStrategies, Yesterday, 05:17 AM
|
0 responses
57 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
133 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
73 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
45 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
50 views
0 likes
|
Last Post
|

Comment