Announcement

Collapse
No announcement yet.

EFS Alert details in Alerts Log

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

  • EFS Alert details in Alerts Log

    Is it possible to have EFS alerts from studies applied to the watchlist (or chart) include the Interval that produced the alert in the pop-up window and Alerts Log Window. It seems that the available EFS Alert functions do not allow for reference to the interval of the data source that generated the alert. On 'Built In' studies there is a separate Alerts tab. Would that be accessible via a custom study?

  • #2
    It seems that the available EFS Alert functions do not allow for reference to the interval of the data source that generated the alert.
    Alert.addToList( symbol, description, foreColor, backColor )

    Just add the interval to the "symbol" parameter passed to "Alert.addToList()" function like:
    PHP Code:
    Alert.addToListgetSymbol()+", "+getInterval(), "Breakout!"Color.greenColor.black ); 
    Wayne

    Comment

    Working...
    X