Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Trade Email

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

    Trade Email

    I am trading with NT8. Can I get an email when my Auto strategy has opened/closed a trade? if so how can i do this?

    #2
    Hello MichaelAlexander,

    Thank you for the post.

    You may use the SendMail() function to automate sending emails. You must configure an email account as a default "Mail" Share Service from the General Options before you use this.

    More on SendMail:


    More on configuring a share service (see "Managing Share Services"):


    The function will be used like so:

    Code:
    EnterLong();
    SendMail("[email protected]", "Trade Alert", "Submit buy order");
    If we may be of any further assistance, please let us know.
    Chris L.NinjaTrader Customer Service

    Comment


      #3
      Originally posted by NinjaTrader_ChrisL View Post
      Hello MichaelAlexander,

      Thank you for the post.

      You may use the SendMail() function to automate sending emails. You must configure an email account as a default "Mail" Share Service from the General Options before you use this.

      More on SendMail:


      More on configuring a share service (see "Managing Share Services"):


      The function will be used like so:

      Code:
      EnterLong();
      SendMail("[email protected]", "Trade Alert", "Submit buy order");
      If we may be of any further assistance, please let us know.
      Hello,

      Is there any way to capture screenshot along with auto-email? Any "unsupported" code to do it?

      Looks like we need to use Automation library to activate particular control, then use "Drawing" library to capture screenshot and save locally, and then ShareService to attach image to the email. Any examples on how to accomplish first 2 steps?

      Thanks

      Comment


        #4
        Hello,

        Thank you for the reply.

        There is an undocumented way to do this.

        Please download the example indicator from this thread that takes a screenshot with NinjaScript, post #34:



        Note: You will need to add two namespaces to your Using declarations:

        using System.IO;
        using System.Windows.Media.Imaging;

        Creating a screenshot requires a three-step process:

        1.Get a chart object
        2.Call GetScreenshot() on that object to get a BitMap
        3.Save the result

        Then you can use the Share overload that takes a system path to the screenshot.

        Also, keep in mind that this example uses a Dispatcher to run the job asynchronously.

        Please let us know if you have any questions.
        Chris L.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Kaledus, Today, 01:29 PM
        1 response
        6 views
        0 likes
        Last Post NinjaTrader_Jesse  
        Started by frankthearm, Yesterday, 09:08 AM
        13 responses
        45 views
        0 likes
        Last Post frankthearm  
        Started by PaulMohn, Today, 12:36 PM
        2 responses
        16 views
        0 likes
        Last Post PaulMohn  
        Started by Conceptzx, 10-11-2022, 06:38 AM
        2 responses
        55 views
        0 likes
        Last Post PhillT
        by PhillT
         
        Started by yertle, Yesterday, 08:38 AM
        8 responses
        37 views
        0 likes
        Last Post ryjoga
        by ryjoga
         
        Working...
        X