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

[spam] Re: Heikin-Ashi Code?



PureBytes Links

Trading Reference Links

--- Begin Message ---
To: equismetastock@xxxxxxxxxxxxxxx
Subject: [EquisMetaStock Group] Re: Heikin-Ashi Code?
From: "Jose" <josesilva22@xxxxxxxxx>
Date: Thu, 05 Feb 2004 02:39:41 -0000
Delivered-to: mailing list equismetastock@xxxxxxxxxxxxxxx
In-reply-to: <bvrure+o8ji@xxxxxxxxxxx>
List-unsubscribe: <mailto:equismetastock-unsubscribe@xxxxxxxxxxxxxxx>
Mailing-list: list equismetastock@xxxxxxxxxxxxxxx; contact equismetastock-owner@xxxxxxxxxxxxxxx
User-agent: eGroups-EW/0.82
Harold, the simple code seems to be the core logic behind the 
Heikin-Ashi candlesticks.  Plot it on the OHLC bar price chart, and 
use the suggested colours for each plot.

jose -')

--- In equismetastock@xxxxxxxxxxxxxxx, hcour <no_reply@xxxx> wrote:
> 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 '-)
> >


--- End Message ---