PureBytes Links
Trading Reference Links
|
Andrew, your Heikin-Ashi code is part of a special indicator group,
named "mistakes".
Try this:
===========
Heikin-Ashi
===========
---8<-------------
HaClose:=(O+H+L+C)/4;
HaOpen:=ValueWhen(2,1,(O+C)/2);
HaHigh:=Max(H,HaOpen);
HaLow:=Min(L,HaOpen);
HaOpen; {Dk Green}
HaHigh; {Blue}
HaLow; {Red}
HaClose {Black}
---8<-------------
jose '-)
--- In equismetastock@xxxxxxxxxxxxxxx, "andrew_slemko"
<andrew_slemko@xxxx> wrote:
>
> Does any one where you can get the code for Heikin Ashi? I wanted to
> look at a few things when they are applied to the candlesticks?
>
> This is what I think it might be? But this is an indicator??
>
> HaClose:=(O+H+L+C)/44;
> HaOpen:= ValueWhen(2,1, (O+C)/2);
> HaOpen; {Red}
> HaClose {blue}
------------------------ 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/BefplB/TM
--------------------------------------------------------------------~->
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|