PureBytes Links
Trading Reference Links
|
Thanks guys!
I hadn't thought to check the members area (forgot there was one), I
found it there. And thanks for the code as well!
--- In amibroker@xxxxxxxxxxxxxxx, "mrdavis9" <mrdavis9@xxxx> wrote:
>
> Here two sets of coding that I have. I can't remember when or
where they
> came from. I don't use them, and I may have even modified them
when I
> played with them, so be aware that they may not be exact Heikin-
Ashi codes.
> Ron D.
>
>
>
>
> HaClose = (O+H+L+C)/4;
>
> HaOpen = AMA( Ref( HaClose, -1 ), 0.5 );
>
> HaHigh = Max( H, Max( HaClose, HaOpen ) );
>
> HaLow = Min( L, Min( HaClose, HaOpen ) );
>
> HaDiffCO = HaClose - HaOpen;
>
> per = Param("MA Periods", 3, 3, 50, 1 );
>
> Plot( HaDiffCo, "HaDiffCO", colorRed );
>
> HaClose = (O+H+L+C)/4;
>
> HaOpen = AMA( Ref( HaClose, -1 ), 0.5 );
>
> HaHigh = Max( H, Max( HaClose, HaOpen ) );
>
> HaLow = Min( L, Min( HaClose, HaOpen ) );
>
> PlotOHLC( HaOpen, HaHigh, HaLow, HaClose, "Modified " + Name(),
colorBlack,
> styleCandle );
>
> =====================================
>
> Plot( MA( HaDiffCo, per ), "MA("+per+")", colorBlue );
>
> Plot(Cross(HaDiffCo,MA(HaDiffCo,
> per)),"BuyX",colorBrightGreen,styleOwnScale);
>
>
>
>
>
>
>
>
> ----- Original Message -----
> From: "traderkirk7" <traderkirk@xxxx>
> To: <amibroker@xxxxxxxxxxxxxxx>
> Sent: Sunday, June 27, 2004 4:52 PM
> Subject: [amibroker] Heikin-Ashi charts
>
>
> > In a recent issue of TASC there was mention of the code for
Heikin-
> > Ashi charts on the Amibroker website, but I can't seem to find it.
> > There was nothing in the AFL library. Does anyone know the link
for
> > it?
> >
> > Thanks
> >
> >
> >
> >
> > 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
> >
> >
> >
> >
> >
------------------------ Yahoo! Groups Sponsor --------------------~-->
Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar.
Now with Pop-Up Blocker. Get it for free!
http://us.click.yahoo.com/L5YrjA/eSIIAA/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/
|