PureBytes Links
Trading Reference Links
|
Thanks
--- In amibroker@xxxxxxxxxxxxxxx, "hairy_mug" <WSCHWARZ@xxxx> wrote:
>
>
> Make sure you run it from the AA window...
>
> walt
>
> --- In amibroker@xxxxxxxxxxxxxxx, "gunovanengel"
<gunovanengel@xxxx> 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 --------------------~-->
What would our lives be like without music, dance, and theater?
Donate or volunteer in the arts today at Network for Good!
http://us.click.yahoo.com/Tcy2bD/SOnJAA/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/
|