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

Options Trading Discussion Group



PureBytes Links

Trading Reference Links

<x-html><HTML>
Jim, Vitaly, Michael, John and Harley - Thanks for your assistance with
the syntax problem.

<P>Just for the sake of closure, the following formulas didn't work:

<P>Ref(C, -1) > .6&nbsp; * Ref(H, -1) - Ref(L, -1) (my original)
<BR>as well as
<BR>Ref(C, -1) > .6&nbsp; *( Ref(H, -1) - Ref(L, -1)) one extra set of
parens
<BR>Ref(C, -1) > (.6&nbsp; * (Ref(H, -1) - Ref(L, -1))) two sets of parens
didn't work.

<P>The reason - as Jim explained it to me - is that my original expression
would always be true and would give me one continuous buy signal.&nbsp;
Apparently, the system tester rejects that kind of formula, because it
showed no trades.

<P>The following formulas <B><I><FONT SIZE=+1>do</FONT></I></B> work:

<P>&nbsp;C > L + (H-L)*0.6 (with Ref(...., -1) added)
<BR>and
<BR>Ref(C, -1) > (Ref(H,-1) - .4&nbsp; * Ref(H, -1) - Ref(L, -1))

<P>With best wishes,
<BR>Philip</HTML>
</x-html>From ???@??? Mon Nov 10 15:18:13 1997
Received: from smtp3.nwnexus.com (smtp3.nwnexus.com [206.63.63.41])
	by mail1.halcyon.com (8.8.5/8.8.5) with ESMTP id PAA20208
	for <neal@xxxxxxxxxxxxxxxx>; Mon, 10 Nov 1997 15:15:29 -0800 (PST)
Received: from mail.equis.com (equis.com [204.246.137.2])
	by smtp3.nwnexus.com (8.8.7/8.8.7) with ESMTP id PAA23018
	for <neal@xxxxxxxxxxx>; Mon, 10 Nov 1997 15:15:28 -0800 (PST)
Received: (from list@xxxxxxxxx) by mail.equis.com (8.7.4/8.7.3) id RAA18714; Mon, 10 Nov 1997 17:13:18 -0700
Resent-Date: Mon, 10 Nov 1997 17:13:18 -0700
Message-Id: <3.0.3.32.19971110170823.031e73e4@xxxxxxxxxx>
X-Sender: lissen@xxxxxxxxxx
X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.3 (32)
Date: Mon, 10 Nov 1997 17:08:23 -0600
To: animal@xxxxxxxxx, MetaStock User Group <metastock-list@xxxxxxxxxxxxx>
From: Lionel Issen <lissen@xxxxxxxxxx>
Subject: Re: Downloader Price Fixing - v6.5
In-Reply-To: <3467550B.4F87@xxxxxxxxx>
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Resent-Message-ID: <"9Vczm2.0.Ka4.UCwPq"@mail.equis.com>
Resent-From: metastock-list@xxxxxxxxxxxxx
X-Mailing-List: <metastock-list@xxxxxxxxxxxxx> archive/latest/5453
X-Loop: metastock-list@xxxxxxxxxxxxx
Precedence: list
Resent-Sender: metastock-list-request@xxxxxxxxxxxxx
Status:   



At 10:40 AM 11/10/97 -0800, D J Hadley wrote:
>When entering a security price with leading 9's and a trailing value of
>.375 I have found these values are rounded up/down.
>
>99999.375 = 99999
>9999.375 = 9999.4
>999.375 = 999.4
>99.375 = 99.38
>etc
>
>These were all entered into a cell with 4 point precision( i.e.
>999.0000).  If I enter 3332.32 I get 3332.3200
>
>Anyone else encountered this?  Get one to wondering if any other values
>are being "adjusted".
>
>
>