PureBytes Links
Trading Reference Links
|
Hello Anthony,
have you tried the code from Tomasz ?
It works fine by me, however i would like to get only one alert in the
alert output window.
Tomasz wrote that i have to set flage to zero, however i still get the
alert in the output window.
Can you confirm this or have you found a solution ?
Regards
Thomas
www.tradingbasis.com
Anthony Faragasso wrote:
This was supplied by Tomasz some
days ago...does it fit your needs ?
Hello,
There was a missing brace in the sample
code, corrected is:
YourCondition = 1;//...
lastdatetime = LastValue( DateTime() );
if( LastValue( YourCondition )
AND
lastdatetime > StaticVarGet( "AlertFlag"+Name() ) )
{
// update static variable
StaticVarSet( "AlertFlag"+Name(), Lastdatetime );
// as many alertif statements as you
wish
AlertIf( True, "EMAIL ...", "Text", 0, 1 );
AlertIf( True, "SOUND ...", "Text", 0, 1
);
}
Best regards,
Tomasz Janeczko
amibroker.com
-----
Original Message -----
Sent:
Friday, October 14, 2005 12:37 PM
Subject:
[amibroker] Alertif Question
I've tried various versions of the code below. It seems like
either
AlertIf line will work on its own but I can't find a way to get the
alerts to generate an audio alert as as well as the customized text
output at the same time.
Short = Open < Close;
/*AlertIf( barcomplete AND Short, "", "Short " + FullName() + "
$ " + Close, 1 );*/
AlertIf( Short, "SOUND C:\\Program
Files\\Amibroker\\DMH\\Alerts\\Chimes.wav", "aa Audio alert", 2 );
Both lines work fine but not together so perhaps you're restricted to
only one AlertIf function.
As always any suggestions or pointers much appreciated.
Thanks & Regards,
Dean H.
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For other support material please check also:
http://www.amibroker.com/support.html
SPONSORED LINKS
YAHOO! GROUPS LINKS
|
|