| 
 PureBytes Links 
Trading Reference Links 
 | 
Here's the "AddTime" function...  Originally created by "The Code"...  And
we all know who that is!
{From "The Code"}
{ User Function: AddTime
Inputs       : xTime - time in 24 hour format.
               Minutes - amount to add/subtract to xTime.
Sample Usage :
  if (Time[0] > AddTime (Sess1StartTime, +30))
    then ...
Returns: Adjusted time in 24 hour format.
Properties
  [ ] Auto Detect
  [*] Simple
  [ ] Series}
Inputs : xTime   (NumericSimple),
         Minutes (NumericSimple) ;
AddTime = MinutesToTime (TimeToMinutes (xTime) + Minutes) ;
----- Original Message -----
From: Robert W Cummings <robert.cummings@xxxxxxxxxxxxxxxx>
To: <fpi@xxxxxxxxxxxx>
Cc: <RHunt.066@xxxxxxxxxxxxxxxx>; <omega-list@xxxxxxxxxx>
Sent: Sunday, July 25, 1999 11:22 AM
Subject: Re: MarketPr*file .ELA code error
>
> Mine verified the code and plotted on bonds but gave the error message on
> the S&P (tried to reference data in an array past the end or before the
> beginning of the array.)
>
> Robert
>
>
>
>
> At 10:49 AM 7/25/1999 -0700, fpi@xxxxxxxxxxxx wrote:
> >Dear Bob:
> >
> >When I tried to verify the code you recently sent re: Market Profile,
> >AddTime wasn't recognized by TS.
> >
> >Any suggestions?
> >
> >Thanks,
> >
> >FPI
> >
> >
>
 |