Thanks!!
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Closed Orders
Collapse
X
-
Hello GibbsB613,
Thanks for writing in to our Support team.
You will need to include a position check in the OnPositionUpdate() method and override it using a specific syntax which I will include in my code sample in this post. You then would need to call SendMail() to send an email after this condition has been met.
For example:
To search through positions by date, you would need to work with TradeCollection objects since you want to look at historical positions that have already been closed. If you wanted to look through your open positions, you can refer to the Positions link at the end of this post for more information on how to loop through your open positions. For example:Code:protected override void OnPositionUpdate(Cbi.Position position, double averagePrice, int quantity, Cbi.MarketPosition marketPosition) { if (position.MarketPosition == MarketPosition.Flat) { SendMail([email protected], "NinjaTrader Alert", "You are now flat"); } }
Here is more information on the methods/objects that I used in these examples:Code:protected override void OnBarUpdate() { foreach (Trade myTrade in SystemPerformance.AllTrades) Print(myTrade.Entry.Time.Date.ToString()); }
OnPositionUpdate() - http://ninjatrader.com/support/helpG...tionupdate.htm
SendMail() - http://ninjatrader.com/support/helpG...s/sendmail.htm
TradeCollection - http://ninjatrader.com/support/helpG...collection.htm
Positions - http://ninjatrader.com/support/helpG...ns_account.htm
Position - http://ninjatrader.com/support/helpG...s/position.htm
Please let me know if I may be of any further assistance.Alan S.NinjaTrader Customer Service
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by NullPointStrategies, Yesterday, 05:17 AM
|
0 responses
75 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
146 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
79 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
50 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
54 views
0 likes
|
Last Post
|

Comment