Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Strategy - Sending Too Many Multiple Emails because of multiple buy signals
Collapse
X
-
Strategy - Sending Too Many Multiple Emails because of multiple buy signals
Currently have a strategy that I am running which is NOT calculated on the close of a bar. The strategy is working perfect however it is sending too many buy signals and email notifications. I just need it to send ONE email notification when a buy signal is reached. And one email notification after it closes. Is there anyway to program the strategy where the next buy signal can not be given until the previous trade closes?Tags: None
-
Hello seahawk13,
Thanks for your reply.
You would need to add conditions to your entry conditions that prevent you from placing the orders until you are flat. You would use a combination of bool logic to accomplish this. One bool condition to check would be the MarketPosition. You can be either long, short or flat and this you can test against. In addition you would use bools that you create and set based on the conditions, for example use a bool called doitonce that you would initialize to true and then set false and true as needed.
For example:
if (your conditions for entry && Position.MarketPosition == MarketPosition.Flat && doitonce)
{
// entry logic here
// send mail here
doitonce = false; // set to false to prevent re-entry of this block before Position is updated
}
Later in your code you would need to reset doitonce = true; when you wish to again place an order.
Another method to consider is BarsSinceExit().
References:
http://ninjatrader.com/support/helpG...ssinceexit.htm
http://ninjatrader.com/support/helpG...etposition.htm
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
157 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
91 views
1 like
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
143 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
131 views
1 like
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
107 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment