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?
Announcement
Collapse
No announcement yet.
EFS Alert details in Alerts Log
Collapse
X
-
It seems that the available EFS Alert functions do not allow for reference to the interval of the data source that generated the alert.
Just add the interval to the "symbol" parameter passed to "Alert.addToList()" function like:
PHP Code:Alert.addToList( getSymbol()+", "+getInterval(), "Breakout!", Color.green, Color.black );
Comment