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
-
first :
learn C# and NinjaScript
next :
create a strategie
next :
put this after your strategie setup
//your signal ...
if ( ....... == ......)
{
signalbar = CurrentBar;
signal = 1; // long
}
if ( ....... == ......)
{
signalbar = CurrentBar;
signal = 2; // short
}
int x = 3; // or 4 or 5 or what ever you want
// trade your signal
if (signalbar + x == CurrentBar)
{
if (signal == 1 && .....)
{
orderlong = SubmitOrderUnmanaged(0, OrderAction.Buy, OrderType.Limit, quantity, longlimit, 0, "", "long");
signal = 0;
}
if (signal == 2 && .....)
{
ordershort = SubmitOrderUnmanaged(0, OrderAction.Sell, OrderType.Limit, quantity, shortlimit, 0, "", "short");
signal = 0;
}
}
enjoyLast edited by jr123; 12-21-2017, 04:14 AM.
-
Hello rgreenberg,
Thanks for your post.
I see you have posted a duplicate in the more appropriate Strategy forum. I will provide a response there. https://ninjatrader.com/support/foru...528#post528528
For future reference please avoid duplicate posts as we do not always see the duplicates. If you have posted in the wrong forum, just let us know and we can move your thread to the correct forum.
Comment
-
jr123
Thank you very much for your detailed response! I am very appreciative of you taking the time to respond. I will incorporate your suggestions into my work.
rg
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
42 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
20 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
29 views
1 like
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
46 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
38 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment