PureBytes Links
Trading Reference Links
|
Thanks for all the reponses, guys.
Jose, yours seems the simplest to code, but when I plot it I get 4
red lines, no candlesticks.
Thanks,
Harold
--- In equismetastock@xxxxxxxxxxxxxxx, "Jose" <josesilva22@xxxx>
wrote:
> MS code from heikin-ashi explanation at
> http://www.traders.
> com/Documentation/FEEDbk_docs/Abstracts_new/Valcu/valcu.html
>
> ===========
> heikin-ashi
> ===========
> ---8<----------
>
> haClose:=(O+H+L+C)/4;
> haOpen:=Ref((O+C)/2,-1);
> haHigh:=Max(H,Max(haOpen,haClose));
> haLow:=Min(L,Min(haOpen,haClose));
>
> haOpen; {Dk Green}
> haHigh; {Blue}
> haLow; {Red}
> haClose {Black}
>
> ---8<----------
>
>
> jose '-)
>
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/
|