PureBytes Links
Trading Reference Links
|
Why not just create the IH / IL as a user function, then
plot it in an indicator? I do this, and it is quite easy.
Here is my IHT user function:
---------------
{Set Properties to Series}
{Variable that Keeps track of IH}
Vars: HH(0);
{Resets IH when the date changes}
VALUE1 = DATE;
IF VALUE1<> VALUE2 THEN HH = H;
{Resets IH at 8:30 CST (so my EMini IH/IL will plot the same
as big S&P}
if time = 830 then HH=h;
VALUE2 = VALUE1;
IF H > HH THEN HH = H;
IHT = HH;
---------------
Patrick White
Remember that for IL you need to error correct for when IL =
0, and seed it with a large default number at the outset.
I declare the LL variable (keeps track of IL) as:
VARS: LL(9999999);
-----Original Message-----
From: Cofleigh@xxxxxxxxx <Cofleigh@xxxxxxxxx>
To: omega-list@xxxxxxxxxx <omega-list@xxxxxxxxxx>
Date: Wednesday, May 05, 1999 2:59 AM
Subject: Re: Intraday high/low
I am unsuccessfully attempting to plot the intra-day high or
low as a
paintbar. Has anyone successfully done this? I know it is
possible, but
can't get it. Any help would be appreciated.
|