Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

SendMail() Function

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

    SendMail() Function

    I would like to use the PriceAlert indicator to send me an email whenever the price selected has been hit. It appears that I can use the 'SendMail()' function to do this. Can you tell me where in the code to add this string?

    #2
    Hello,

    Thank you for your note.

    You would want to put the SendMail() function in the if() statement where the Alert() function is triggered.

    Code:
                if ((triggerOnGreaterThan && Input[0] >= price - (TickSize * 0.5)) || (!triggerOnGreaterThan && Input[0] <= price + (TickSize * 0.5)))
                {
                    triggered = true;
                    Alert(DateTime.Now.Millisecond.ToString(), Cbi.Priority.Medium, "Price level '" + price + "' hit!", Cbi.Core.InstallDir + @"\sounds\Alert4.wav", 0, Color.Yellow, Color.Black);
                }
    CameronNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CaptainJack, 05-29-2026, 05:09 AM
    0 responses
    305 views
    0 likes
    Last Post CaptainJack  
    Started by CaptainJack, 05-29-2026, 12:02 AM
    0 responses
    196 views
    0 likes
    Last Post CaptainJack  
    Started by charlesugo_1, 05-26-2026, 05:03 PM
    0 responses
    186 views
    1 like
    Last Post charlesugo_1  
    Started by DannyP96, 05-18-2026, 02:38 PM
    1 response
    274 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    228 views
    0 likes
    Last Post CarlTrading  
    Working...
    X