PureBytes Links
Trading Reference Links
|
Here is a MS code for one from
http://www.euro-info.com.pl/kr/AFM/e-w-Darvas_Box.html
Darvas Box
LowL:=If(Low=LLV(Low,5),Low,If(Ref(Low,-1)=LLV(Low,5),Ref(Low,-1),
If(Ref(Low,-2)=LLV(Low,5),Ref(Low,-2),If(Ref(Low,-3)=LLV(Low,5),Ref(Low,-3),
If(Ref(Low,-4)=LLV(Low,5),Ref(Low,-4),0)))));
NewH:=ValueWhen(1,High>Ref(HHV(High,5),-1),High);
box1:=HHV(High,3)<HHV(High,4);
box2:=ValueWhen(1,BarsSince(High>Ref(HHV(High,5),-1))=3 AND box1=true,NewH);
box3:=ValueWhen(1,BarsSince(High>Ref(HHV(High,5),-1))=3 AND box1=true,LowL);
TopBox:=box2;
BottomBox:=box3;
TopBox;
BottomBox;
Cheers,
Graham
http://groups.msn.com/ASXShareTrading
http://groups.msn.com/FMSAustralia
-----Original Message-----
From: stvd2002 [mailto:stanvol@xxxxxxxxxxxxxx]
Sent: Thursday, 18 September 2003 4:05 PM
To: amibroker@xxxxxxxxxxxxxxx
Subject: [amibroker] Re: Darvas Box Indicator?
I know, and I believe the script for wealthlab is written on the
the basis of this http://www.gerryco.com/tech/darvas.html
But I've installed Guppy trader essential software and it draws the
bottoms of some boxes differently. I realy cannot comment on the
proper definition on the construction. Maybe
http://www.gerryco.com/tech/darvas.html is the correct definition
and the software from http://www.guppytraders-essentials.com could
draw them incorrectly, which I doubt.
Anybody can download a trial version and see for themselves. I
apologise for confusing everyone :-)
Stan
--- In amibroker@xxxxxxxxxxxxxxx, "Stephane Carrasset"
<nenapacwanfr@xxxx> wrote:
> Tha darvas box in box.dll have been written according to
> http://www.gerryco.com/tech/darvas.html
>
> stephane
> > The top of the box is established when the stock does not touch
or
> > penetrate a previously set new high for three consecutive days.
> > This is true in reverse for the bottom of the box. The bottom
> > starts one day after the top.
> >
> > But I'm not 100% sure either because I don't have the book
> myself.
> > Anyone who has the book please feel free to correct me.
> >
> > Stan
> >
> >
> > --- In amibroker@xxxxxxxxxxxxxxx, "mleonsprint"
<mleonsprint@xxxx>
> > wrote:
> > > What do you consider a correct "Darvas" box?
> >
> >
> >
> > > --- In amibroker@xxxxxxxxxxxxxxx, "stvd2002" <stanvol@xxxx>
wrote:
> > > > I'm also currently experimenting with darvas boxes,
> > unfortunately
> > > > the box.dll in the 3rd party draw them inaccurately.
> > > >
> > > > There is a script on a WealthLab site that draws darvas
boxes,
> > but
> > > > again it draws them inaccurately.
> > > >
> > > > However I could be wrong, because I've noticed that same
people
> > > have
> > > > different definitions of how to construct them, therefore I
> > admit
> > > > that I'm bit confused myself :-)
> > > >
> > > > There is a software from Australian trader by the name of
Daryl
> > > > Guppy and his softWare draws them correctly.
> > > > http://www.guppytraders-essentials.com/
> > > >
> > > >
> > > > Regards
> > > > Stan
> > > >
> > > > --- In amibroker@xxxxxxxxxxxxxxx, "mroman59" <mroman59@xxxx>
> > wrote:
> > > > > Hello, has anyone heard of or tried to create a Darvas Box
> > > > > indicator? The Darvas Box investing technique derives
from
> > the
> > > > > books How I made $2 million in the Stock Market by Nicolas
> > > Darvas.
> > > > > If anyone has come across any websites that could assits
in
> > > > > programing code for this indicator, I would greatly
> appreciate
> > > it.
> > > > >
> > > > > Thank You
> > > > > MR
------------------------ Yahoo! Groups Sponsor ---------------------~--> Buy
Remanufactured Ink Cartridges & Refill Kits at MyInks.com for: HP $8-20.
Epson $3-9, Canon $5-15, Lexmark $4-17. Free s/h over $50 (US & Canada).
http://www.c1tracking.com/l.asp?cid=6351
http://us.click.yahoo.com/0zJuRD/6CvGAA/qnsNAA/GHeqlB/TM
---------------------------------------------------------------------~->
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at:
http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Remanufactured Ink Cartridges & Refill Kits at MyInks.com for: HP $8-20. Epson $3-9, Canon $5-15, Lexmark $4-17. Free s/h over $50 (US & Canada).
http://www.c1tracking.com/l.asp?cid=6351
http://us.click.yahoo.com/0zJuRD/6CvGAA/qnsNAA/GHeqlB/TM
---------------------------------------------------------------------~->
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|