PureBytes Links
Trading Reference Links
|
Try removing your type = and flags = and lookback = and
just putting in the values as in:
AlertIf( BuySignal, "SOUND
C:\\Windows\\Media\\Ding.wav", "Trendlinebreak alert on "+FullName()
+ "SheetNumber" + SheetNum, 1, 1+2+4+8, 20 ); //Buy
Terry
gunovanengel wrote:
I want to place code behind my chart to sound an alarm when a
trendline is broken.
The code below does not seem to work. What am I doing wrong.
Your help is appreciated very much.
Regards
Guno
////////////////////////////// Sound alarm on Trendline
Break /////////////////////////////////////
BuySignal = Cross( Close, Study( "SU", GetChartID() ) );
SellSignal = Cross( Study( "SU", GetChartID() ), Close );
ShortSignal = Cross( Study( "RE", GetChartID() ), Close );
CoverSignal = Cross( Close, Study( "RE", GetChartID() ) );
AlertIf( BuySignal, "SOUND
C:\\Windows\\Media\\Ding.wav", "Trendlinebreak alert on "+FullName()
+ "SheetNumber" + SheetNum , type = 1, flags = 1+2+4+8, lookback =
20 ); //Buy
AlertIf( SellSignal, "SOUND
C:\\Windows\\Media\\Ding.wav", "Trendlinebreak alert on "+FullName()
+ "SheetNumber" + SheetNum , type = 2, flags = 1+2+4+8, lookback =
20 ); //Sell
AlertIf( ShortSignal, "SOUND
C:\\Windows\\Media\\Ding.wav", "Trendlinebreak alert on "+FullName()
+ "SheetNumber" + SheetNum , type = 3, flags = 1+2+4+8, lookback =
20 ); //Short
AlertIf( Coversignal, "SOUND
C:\\Windows\\Media\\Ding.wav", "Trendlinebreak alert on "+FullName()
+ "SheetNumber" + SheetNum , type = 4, flags = 1+2+4+8, lookback =
20 ); //Cover
/////////////////////////////////////////////////////////////////////
////////
------------------------ Yahoo! Groups Sponsor --------------------~-->
Has someone you know been affected by illness or disease?
Network for Good is THE place to support health awareness efforts!
http://us.click.yahoo.com/Rcy2bD/UOnJAA/cosFAA/GHeqlB/TM
--------------------------------------------------------------------~->
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
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> 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/
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
Yahoo! Groups Links
|
|