Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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 CortexZenUSA, Today, 12:53 AM
      0 responses
      1 view
      0 likes
      Last Post CortexZenUSA  
      Started by CortexZenUSA, Today, 12:46 AM
      0 responses
      1 view
      0 likes
      Last Post CortexZenUSA  
      Started by usazencortex, Today, 12:43 AM
      0 responses
      5 views
      0 likes
      Last Post usazencortex  
      Started by sidlercom80, 10-28-2023, 08:49 AM
      168 responses
      2,266 views
      0 likes
      Last Post sidlercom80  
      Started by Barry Milan, Yesterday, 10:35 PM
      3 responses
      13 views
      0 likes
      Last Post NinjaTrader_Manfred  
      Working...
      X