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 LawrenHom, Today, 10:45 PM
      0 responses
      3 views
      0 likes
      Last Post LawrenHom  
      Started by love2code2trade, Yesterday, 01:45 PM
      4 responses
      28 views
      0 likes
      Last Post love2code2trade  
      Started by funk10101, Today, 09:43 PM
      0 responses
      7 views
      0 likes
      Last Post funk10101  
      Started by pkefal, 04-11-2024, 07:39 AM
      11 responses
      37 views
      0 likes
      Last Post jeronymite  
      Started by bill2023, Yesterday, 08:51 AM
      8 responses
      44 views
      0 likes
      Last Post bill2023  
      Working...
      X