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

AW:Re: missing functions



PureBytes Links

Trading Reference Links

Hi Patrick

Here are two of the missing functions.

Hans-Peter Moeckli
anatop@xxxxxxxxxxx

---------------------
IDLOW
-------------------------
vars:lowtoday(99999);

lowtoday=lowtoday[1];

if date>date[1] then lowtoday=99999;

if l<lowtoday then lowtoday=l;

IDlow=lowtoday;

-----------------------------------------
IDHIGH
----------------------------
vars:htoday(0);

htoday=htoday[1];

if date>date[1] then htoday=0;

if h>htoday then htoday=h;

IDhigh=htoday;