Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

E-mail sending at Stop strategy

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

    E-mail sending at Stop strategy

    Hello NT support!

    I'd like to send an E-mail using SendMail() method when the strategy will stop for unexpected reason. Is it an uniqe method to detect the strategy stopping?
    I like to use other method as OnConnectionStatus().

    thanks Tom

    #2
    Hello marotom,
    Thanks for writing in and I am happy to assist you.

    Unfortunately there are no unique event to detect strategy disablement but you can use the existing events to replicate it.

    OnConnectionStatus() will trigger on any connectivity disruption.


    An strategy can also stop if any order gets rejecteded etc. You can capture it in the OnOrderUpdate event

    Code:
    protected override void OnOrderUpdate(IOrder order)
    {
    	
    	if (order.OrderState == OrderState.Rejected)
    	{
    		//send mail
    	}
    }


    Please let me know if I can assist you any further.
    JoydeepNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CarlTrading, 03-31-2026, 09:41 PM
    1 response
    68 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    38 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    62 views
    1 like
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    62 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    53 views
    0 likes
    Last Post CarlTrading  
    Working...
    X