Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
emailing me when ordering
Collapse
X
-
Hello,
Thank you for the question.
In a strategy, you can either send an email in the condition where you are submitting the order, or after the execution if you choose.
Depending if you are manually coding this or using the Strategy wizard would make a differnece on when the email could be sent.
In the wizard would be only during the condition, manually coded you could get the actual execution event.
For more information on SendMail, please see this document: http://ninjatrader.com/support/helpG...htsub=SendMail
I look forward to being of further assistance.
-
Interesting,
SO I insert this:
SendMail("[email protected]", "[email protected]", "Trade Alert", "Buy ES");
on my script along with any EnterShort, EnterLong, Exit Short, etc???
What about the stop loss and gains?
Comment
-
Hello,
Yes that code would be inserted where needed when you want to SendMail.
Again that would depend if you are using the wizard.
In manual coding you would need to either do this when you call SetStopLoss, unless it is used in Initialize, in that case you would need to locate the stop orders using OnExecution and use logic to send the message when the order is executed.
Using the wizard, there would be no way to send a mail for the SetStopLoss event, only in the Set1-9 you could use the SendMail for standard entry or exit orders.
I look forward to being of further assistance.
Comment
-
Hello,
I am unsure on efficiency, it would be more of what you are trying to get.
OnExecution would ensure an execution has occurred and then send the message, so if you are looking for an email for each execution this would be a good place for this logic.
I look forward to being of further assistance .
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
61 views
0 likes
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
148 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
162 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
99 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
286 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|

Comment