| 
 PureBytes Links 
Trading Reference Links 
 | 
Hi,
Barry share this code. I suppose you have to write it in each pane with 
a dedicated static variable for each ticker.
VarPfx01
VarPfx02
...
Best regards
If you are talking about email alerts I have an include that does that. 
You can put the functions near the top of your program and just call 
them when you want to send an alert.
Barry
// sends an email alert if the parameter is set to send alerts
// this should only send one alert per instance
function fSendAlertOnce( text )
{
if( SendAlert AND StaticVarGetText(VarPfx + "LastAlertSent") != text )
{
AlertIf(True, "EMAIL", Date() + ", " + text, type = 0 );
StaticVarSetText(VarPfx + "LastAlertSent", text );
if(DebugOn) _TRACE("#, FeedBkInc, Alert Text =" + text + "\n");
}
}
Vinay Gakkhar. a écrit :
> I get email alert only on the open / active chart.
> 
> Can anybody suggest how to get email alerts for all trade signal 
> generated in any of the symbols when I download intraday data using 
> Amiquote.
> 
> vgakkhar
> 
------------------------------------
**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
TO GET TECHNICAL SUPPORT send an e-mail directly to 
SUPPORT {at} amibroker.com
TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
Yahoo! Groups Links
<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
    Individual Email | Traditional
<*> To change settings online go to:
    http://groups.yahoo.com/group/amibroker/join
    (Yahoo! ID required)
<*> To change settings via email:
    mailto:amibroker-digest@xxxxxxxxxxxxxxx 
    mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
    amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 |