Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Closed Orders

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Closed Orders

    How can I identify when an position has been closed and generate an email? Can I search through positions by date? I want to do all of this through Ninjascript.

    Thanks!!

    #2
    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:

    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");
    }
    }
    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 OnBarUpdate()
    {
    foreach (Trade myTrade in SystemPerformance.AllTrades)
    Print(myTrade.Entry.Time.Date.ToString());
    }
    Here is more information on the methods/objects that I used in these examples:

    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

    Comment


      #3
      Thanks, I'll give it a try.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by NullPointStrategies, 03-13-2026, 05:17 AM
      0 responses
      93 views
      0 likes
      Last Post NullPointStrategies  
      Started by argusthome, 03-08-2026, 10:06 AM
      0 responses
      152 views
      0 likes
      Last Post argusthome  
      Started by NabilKhattabi, 03-06-2026, 11:18 AM
      0 responses
      80 views
      0 likes
      Last Post NabilKhattabi  
      Started by Deep42, 03-06-2026, 12:28 AM
      0 responses
      53 views
      0 likes
      Last Post Deep42
      by Deep42
       
      Started by TheRealMorford, 03-05-2026, 06:15 PM
      0 responses
      64 views
      0 likes
      Last Post TheRealMorford  
      Working...
      X