PureBytes Links
Trading Reference Links
|
Hi Patrick,
I got it. Thank you for your help.
Robert
--- In amibroker@xxxxxxxxxxxxxxx, "NW Trader" <ta4charts@xxx> wrote:
>
> Hi Robert,
>
> I'm not Tomasz (or anywhere near as smart), but have you checked
to see if
> your chart parameters are set to display trading arrows [ rt click
chart,
> select parameters -- axes & grid -- miscellaneous -- show trading
> arrows ] -- all of this is for display of arrows after an AA has
been run.
> If you mean simply from the code below, then you need to have
plotshapes
> added to the code (as well as some other indicator like price or
the MAs
> themselves).
>
> Hope this helps.
>
> Peace and Justice --- Patrick
>
>
>
>
> ----- Original Message -----
> From: "cstdc5588" <cstdc5588@xxx>
> To: <amibroker@xxxxxxxxxxxxxxx>
> Sent: Thursday, June 22, 2006 1:38 PM
> Subject: [amibroker] Re: How can I show buy or sell signal arrow
>
>
> Hi Tomasz,
>
> I have a new computer and installed AmiBroker Pro 4.8 version
> yesterday. I run a simple formula which worked in my old computer.
> But it can not show buy or sell signal arrow in my new computer.
> Below is the formula:
>
> Cond = Cross( MA (Close, 10), MA(Close, 20) );
> Cond1 = Cross( MA (Close, 20), MA(Close, 10) );
> Buy = Cond;
> Sell = Cond1;
> AlertIf( Buy, "SOUND C:\\Windows\\Media\\Ding.wav", "Audio alert",
> 1 );
> AlertIf( Sell, "SOUND C:\\Windows\\Media\\Ding.wav", "Audio alert",
> 2 );
>
> Could you please teach me how to solve this problem.
>
> Thanks a lot.
>
> Robert
>
>
>
>
>
>
>
>
> 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
>
|