Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
indicator to tweet orders to twitter
Collapse
X
-
indicator to tweet orders to twitter
Is their an indicator that automatically tweet the openprice target and stoploss?Tags: None
-
Ok thanks. How can I get an email once to order is filled? I filled in the Shared service (screenshot http://prntscr.com/gi6e4v) but I do not get an email once filled only when I have an error on NT. I have testen the email and this works.
Comment
-
Hello MichaelAlexander,
Thank you for the post.
I explain how to send an email when a buy market order is submitted here in your previous post:
If you wish to receive an email when the order is filled, use Order.Filled in OnOrderUpdate() to achieve this.
You may also send tweets directly from NinjaTrader.Code:bool mailSent = false; protected override void OnOrderUpdate(Order order, double limitPrice, double stopPrice, int quantity, int filled, double averageFillPrice, OrderState orderState, DateTime time, ErrorCode error, string nativeError) { if (order.Name == "myEntryOrder") { if (State == State.Realtime) { if(mailSent == false && order.OrderState == OrderState.Filled) { SendMail("[email protected]", "Trade Alert", "Order filled"); } } } }
Please see the help guide for details and further examples: http://ninjatrader.com/support/helpG...-us/?share.htmCode:if (your trigger conditions) { // sending a screen shot to Twitter Share("Twitter", "Check out this setup!", @"C:\MyImages\chart03.PNG"); }
If we may be of any further assistance, please let us know.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
43 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
26 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|
||
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
163 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
98 views
1 like
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
158 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|

Comment