PureBytes Links
Trading Reference Links
|
Printed below is an update (version 1.1)
Regards,
Ton Maas
ms-irb@xxxxxxxxxxxxxxxx
Dismiss the ".nospam" bit (including the dot) when replying.
Homepage http://home.planet.nl/~anthmaas
{assuming that all curvature is nice and smooth:
no jaggies up and down along the way and
sp=short periods and lp=long periods}
{The right buttock low occurred **less** than 10 days ago}
RBLsp:= LLV(10);
RBLlp:= LLV(20);
RBL:= RBLsp<RBLlp;
{or RBL:= Min(RBLsp,RBLlp)>=RBLsp;}
{The left buttock low occurred **more** than 20 days ago}
LBLsp:= LLV(20);
LBLlp:= LLV(60);
LBL:= LBLsp<LBLlp;
{or LBL:= Min(LBLsp,LBLlp)<=LBLsp;}
{The right buttock low is **higher** than the left buttock's low}
RBL>LBL
{or Max(RBL,LBL)=RBL}
----- Original Message -----
From: Nicholas Kormanik <nkormanik@xxxxxxxxxx>
To: <metastock@xxxxxxxxxxxxx>
Sent: zaterdag 5 februari 2000 19:20
Subject: RE: How would you code this?
>
> Ton Maas,
>
> Thank you very much for your help.
>
> I'll let you know how it goes.
>
> Nicholas
>
>
>
>
|