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 Mindset, 04-21-2026, 06:46 AM
      0 responses
      88 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by M4ndoo, 04-20-2026, 05:21 PM
      0 responses
      134 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by M4ndoo, 04-19-2026, 05:54 PM
      0 responses
      68 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by cmoran13, 04-16-2026, 01:02 PM
      0 responses
      119 views
      0 likes
      Last Post cmoran13  
      Started by PaulMohn, 04-10-2026, 11:11 AM
      0 responses
      67 views
      0 likes
      Last Post PaulMohn  
      Working...
      X