Announcement

Collapse
No announcement yet.

How can one add an email alert to an Alert .efs?

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

  • How can one add an email alert to an Alert .efs?

    Is there a way to add an email Alert to the .efs code? So an email will be sent to the email address already established in the Application Properties of eSignal 11? Or by including the email address in the code?

    Alert.addToList(getSymbol(), "Price is > " + Length + " Bar " + Type, Color.black, Color.green);
    Alert.playSound("swoosh.wav");

  • #2
    Re: How can one add an email alert to an Alert .efs?

    scotti
    You do that using the Alert.email() function. For the syntax and information on this function see this article in the EFS KnowledgeBase
    Alex


    Originally posted by scotti
    Is there a way to add an email Alert to the .efs code? So an email will be sent to the email address already established in the Application Properties of eSignal 11? Or by including the email address in the code?

    Alert.addToList(getSymbol(), "Price is > " + Length + " Bar " + Type, Color.black, Color.green);
    Alert.playSound("swoosh.wav");

    Comment

    Working...
    X