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 Brevo, Today, 01:45 AM
        0 responses
        2 views
        0 likes
        Last Post Brevo
        by Brevo
         
        Started by aussugardefender, Today, 01:07 AM
        0 responses
        3 views
        0 likes
        Last Post aussugardefender  
        Started by pvincent, 06-23-2022, 12:53 PM
        14 responses
        238 views
        0 likes
        Last Post Nyman
        by Nyman
         
        Started by TraderG23, 12-08-2023, 07:56 AM
        9 responses
        384 views
        1 like
        Last Post Gavini
        by Gavini
         
        Started by oviejo, Today, 12:28 AM
        0 responses
        4 views
        0 likes
        Last Post oviejo
        by oviejo
         
        Working...
        X