PureBytes Links
Trading Reference Links
|
PTC,
This is the GannHiLo formula. It plots a 3day moving average of the
high if the close is greater than yesterday's 3day moving average of
the high or a 3day moving average of the less if the close is less
than yesterday's 3day moving average of the low.
Basically the formula produces a value for the day(HLd). The value
(HLV)is then used to plot either the 3MA of the high or close
depending on the HLD condition. Three conditions are possible.
1=plot 3ma of high
-1=plot 3ma of low
0=null
Preston
--- In equismetastock@xxxxxxxxxxxxxxx, "PTC Man" <ptc_man@xxxx>
wrote:
> Hi
>
> Can any one help me how do read this formula?
>
> HLd:=If(CLOSE>Ref(Mov(H,3,E),-1),
> {then}1,
> {else}If(CLOSE<Ref(Mov(L,3,E),-1),
> {then}-1,
> {else}0));
> HLv:=ValueWhen(1,HLd<>0,HLd);
> HiLo:=If(HLv=-1,
> {then}Mov(H,3,E),
> {else}Mov(L,3,E));
> HiLo;
>
>
>
> HLd:=If(CLOSE>Ref(Mov(H,3,E),-1), {then}1, {else}If(CLOSE<Ref(Mov
(L,3,E),-1) , {then}-1, {else}0));
> I can't understand the (-1) and (1) reference.
>
> Then we have
>
> If HLv = -1 ????
>
> I would apreciate any help
>
> Thank's
> Regards
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for your HP, Epson, Canon or Lexmark
Printer at MyInks.com. Free s/h on orders $50 or more to the US & Canada.
http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/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/
|