Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Receive email alerts for executions

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

    Receive email alerts for executions

    Hello good afternoon, what would be necessary to schedule instruction in the code of a extrategia to receive email alerts when an order is executed in the market? Thank you.
    Last edited by optimuss; 08-16-2011, 11:28 AM.

    #2
    Hi optimuss, assuming extrategia means strategy (estrategia?), you can use the SendMail() function to send out emails upon executions. You can also use the OnExecution() method to detect exactly when an execution has occurred. Here are the help guide pages for both - http://www.ninjatrader.com/support/h...7/sendmail.htm, http://www.ninjatrader.com/support/h...nexecution.htm.
    Code:
    protected override void OnExecution(IExecution execution)
    {
        // put the execution details into string format
        string exec_s = execution.ToString();
    
        // print out the string, just to verfiy
        Print(exec_s);
    
        //email it SendMail("[email protected]", "[email protected]", "Trade Alert", "Buy ES");
        SendMail(<your email address>, <where you want to send the message>, "strategy execution", exec_s);
    }
    AustinNinjaTrader Customer Service

    Comment


      #3
      Thank you.

      Comment


        #4
        SendMail() - send chart?

        Hi there,

        Is it possible to send a chart image programmatically? In a chart, with a right click it is possible to email the image of a chart. I am running various strategies (not on a chart) but I would nevertheless also have a chart attached to my emails (with the SendMail function or otherwise) and not only text. How can I achieve this?

        Thank you
        wtmnn

        Comment


          #5
          Hello whotookmynickname,
          Unfortunately there are no native method to do it. You can however create your own custom script to do it.

          Please refer to this member submitted code from our support forum which are on similar lines
          JoydeepNinjaTrader Customer Service

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by Geovanny Suaza, 02-11-2026, 06:32 PM
          0 responses
          670 views
          0 likes
          Last Post Geovanny Suaza  
          Started by Geovanny Suaza, 02-11-2026, 05:51 PM
          0 responses
          379 views
          1 like
          Last Post Geovanny Suaza  
          Started by Mindset, 02-09-2026, 11:44 AM
          0 responses
          111 views
          0 likes
          Last Post Mindset
          by Mindset
           
          Started by Geovanny Suaza, 02-02-2026, 12:30 PM
          0 responses
          575 views
          1 like
          Last Post Geovanny Suaza  
          Started by RFrosty, 01-28-2026, 06:49 PM
          0 responses
          582 views
          1 like
          Last Post RFrosty
          by RFrosty
           
          Working...
          X