PureBytes Links
Trading Reference Links
|
Thanks Tomasz, now I understand the concept. A great program!
The program was a TEST only , now I can move on.
Ray
--- In amibroker@xxxxxxxxxxxxxxx, "Tomasz Janeczko" <amibroker@xxxx>
wrote:
> Hello,
>
> The arrows are down because the TYPE you are using is 2.
>
> AlertIf( Buy, "Sound C:\\Program
Files\\AmiBroker\\Sounds\\gunshot.wav","Buy",2);
>
> Change it to 1 to get buy arrow:
>
> AlertIf( Buy, "Sound C:\\Program
Files\\AmiBroker\\Sounds\\gunshot.wav","Buy",1);
>
> Best regards,
> Tomasz Janeczko
> amibroker.com
> ----- Original Message -----
> From: "me_rayme" <raycherry1@xxxx>
> To: <amibroker@xxxxxxxxxxxxxxx>
> Sent: Wednesday, April 13, 2005 7:21 PM
> Subject: [amibroker] Re: Tomasz is this another bug in 4.7 with
Sounds
>
>
> >
> >
> >
> >
> > I made it work Sorry as I had Sounds as C:\\AmiBroker\\Sounds.
> > Moved Sounds under C:\\Program Files\\Amibroker\\Sounds.
> >
> > AlertIf( Buy, "Sound C:\\Program
> > Files\\AmiBroker\\Sounds\\gunshot.wav","Buy",2);
> >
> > AlertIf( Sell, "Sound C:\\Program
> > Files\\AmiBroker\\Sounds\\tada.wav","Sell",2);
> >
> > Now I have different sounds like gunshot and tada!
> >
> > Still wondering why all the Arrows under Alert Output are DOWN.
> >
> > Ray
> >
> > C:\\Program Files
> > --- In amibroker@xxxxxxxxxxxxxxx, "me_rayme" <raycherry1@xxxx>
wrote:
> >>
> >> HELP I love AB BUT have another problem. Ver 4.70 RC3 Prof
ver.XP
> >> sp2. I am a newbe one month with afl but 10 years with AIQ.
> >>
> >> I have a problem getting different sounds in RT. I usually use
> > many
> >> sounds with AIQ Alerts RT, but can not figure it out with this
> >> version.
> >>
> >> All I get is a DING sound, that I do not like. Need a variation
of
> >> sounds.
> >>
> >> See the test code below. So what is wrong?? Seems like the
code
> >> goes automatically to Windows\media\ding.wav. Tell me how to
> > change
> >> it?
> >>
> >> It plots and comes up in Alert Output, with a Ding.
> >> I keep my Sounds in different areas, but this does not work.
> >>
> >> Buy=Cross( MACD(), Signal() );
> >> Sell=Cross( Signal(), MACD() );
> >>
> >> Plot(Buy,"",colorGreen,styleLine,styleThick);
> >> Plot(Sell,"",colorRed,styleLine,styleThick);
> >>
> >> //AlertIf( Buy, "Sound C:\\Windows\\Media\\Ding.wav","Buy",3);
> >>
> >> //AlertIf( Sell, "Sound C:\\Windows\\Media\\Ding.wav","Sell",3);
> >>
> >> //AlertIf( Buy, "Sound C:\Program
> >> Files\AmiBroker\Sounds\Gunshot.wav","Buy Audio alert",2);
> >>
> >> //AlertIf( Sell, "Sound C:\Program
> >> Files\AmiBroker\Sounds\Tada.wav","Sell Audio alert",3);
> >>
> >>
> >> AlertIf( Buy, "Sound
C:\\AmiBroker\\Sounds\\gunshot.wav","Buy",2);
> >> AlertIf( Sell, "Sound C:/
\AmiBroker\\Sounds\\tada.wav","Sell",2);
> >>
> >> And I have another question on the following, Why are all the
> > Arrows
> >> down in Alert Output? Some say Buy and some say Sell. Seems
like
> > we
> >> should have both up & Down Arrows.
> >>
> >>
> >> Ray
> >
> >
> >
> >
> >
> >
> > 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
> >
> >
> >
> >
> >
> >
> >
> >
------------------------ Yahoo! Groups Sponsor --------------------~-->
In low income neighborhoods, 84% do not own computers.
At Network for Good, help bridge the Digital Divide!
http://us.click.yahoo.com/EpW3eD/3MnJAA/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/
|