PureBytes Links
Trading Reference Links
|
Ken,
Two things:
1. The possibility of variable period in Aroon expressions offers
unlimited coding ease, the coder fantasy is the only limit.
2. AFL is ...a bit better from the heroic period when Tomasz wrote
his AFL Library code, any investment in Amibroker evolution is more
than sucessful.
I have never used this indicator, I hope you will give us some
brilliant ideas after your homework.
Dimitris
--- In amibroker@xxxxxxxxxxxxxxx, "Ken Close" <closeks@xxxx> wrote:
> Many thanks to DT for a creative modification to the Aroon that I
was
> asking for. Thanks also to Corey and Fred, who wrote first showing
the
> simple HHVBars function that makes this all so easy to write.
>
> Now to play with this indicator to see if it has as much to offer as
> that author of the piece in the Ensign Newsletter seemed to think it
> does.
>
> Ken
>
> -----Original Message-----
> From: DIMITRIS TSOKAKIS [mailto:TSOKAKIS@x...]
> Sent: Tuesday, September 28, 2004 2:28 AM
> To: amibroker@xxxxxxxxxxxxxxx
> Subject: [amibroker] Re: Expanded Aroon Indicator
>
> Example:
> The Aroonup period will vary from 9 to 19 according to the StochD
()
> values.
>
> //Variable period AroonUp line
> per = 14;
> AroonUp = 100 * (per - (HHVBars(H, per))) / per;
> Plot(AroonUp,"AU",colorBlack,8);
> x=floor((StochD()-50)/10);
> Varper = 14-x;
> VarAroonUp = 100 * (Varper - (HHVBars(H, Varper))) / Varper;
> Plot(VarAroonUp,"VarAU["+WriteVal(Varper,1.0)+"]",colorWhite,8);
> Varper1 = 14+x;
> VarAroonUp1 = 100 * (Varper1 - (HHVBars(H, Varper1))) / Varper1;
> Plot(VarAroonUp1,"VarAU1["+WriteVal(Varper1,1.0)+"]",colorRed,8);
>
> The red line will be faster [the white will be slower] when the
stock
> is oversold.
> Dimitris
>
>
> ---
> Outgoing mail is certified Virus Free.
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.768 / Virus Database: 515 - Release Date: 9/22/2004
------------------------ Yahoo! Groups Sponsor --------------------~-->
$9.95 domain names from Yahoo!. Register anything.
http://us.click.yahoo.com/J8kdrA/y20IAA/yQLSAA/GHeqlB/TM
--------------------------------------------------------------------~->
Check AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.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/
|