[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [amibroker] Help for a novice?



PureBytes Links

Trading Reference Links

Hello,

Just to give you a hint how can this be implemented in AFL:

/* Bullish 50/200-day MA crossover exploration */

mashort = ma( close, 50 );
malong = ma( close, 200 );

buy = filter = cross( mashort, malong );
sell = cross( malong, mashort );

numcolumns = 2;
column0 = mashort;
column0name = "50 day MA";
column1 = malong;
column1name = "200 day MA";


Best regards,
Tomasz Janeczko

----- Original Message -----
From: <untapped_energies@xxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Saturday, August 11, 2001 6:31 PM
Subject: [amibroker] Help for a novice?


> Hi,
>
> I've just started using Amibroker and think its a fantastic
> programme. I would like to add the following filters to the programme:
> - Bullish 50/200-day MA Crossovers
> - Bearish 50/200-day MA Crossovers
> - Strong Volume Gainers
> - Strong Volume Decliners
> - 30-week moving average crossovers
>
> I don't know how to programme in Amibroker but am willing to learn.
> What is the best way to learn?
>
>
>
>
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>
>
>