PureBytes Links
Trading Reference Links
|
Here's Addtime.
regards,
Isaac
--------TS 4.0 User Function below--------------------
{ 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
Provided by Product Support Dept.
of Omega Research, Inc.
}
Inputs : xTime (NumericSimple),
Minutes (NumericSimple) ;
AddTime = MinutesToTime (TimeToMinutes (xTime) + Minutes) ;
-----Original Message-----
From: Robert W Cummings [mailto:robert.cummings@xxxxxxxxxxxxxxxx]
Sent: Sunday, July 25, 1999 11:23 AM
To: fpi@xxxxxxxxxxxx
Cc: RHunt.066@xxxxxxxxxxxxxxxx; omega-list@xxxxxxxxxx
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
>
>
|