PureBytes Links
Trading Reference Links
|
<x-html><!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
Haven't read the article, but for example if you want to enter at 1 tick
above/below setup bar so system tester can to do the math, this may get
you as close. Of course it only will calc from setup bar's
high or low, not the 1 tick above/below condition. BTW, arrows will
appear on setup bar, not entry bar.
<br>Set trade entry price to high with zero delay. Set trade exit
price to close with 1 bar delay.
<br>if you want to use the inactivity stop, set periods to 1. Or
for if you want to use a close long/short condition to force an exit, stick
1>0 in there and don't use the inactivity stop.
<br>I added an additional line. -Ken
<br>Try this for buys:
<p>N:=-1;
<br>R:=0.01;
<br>QUAD:=Ref(H-L,N)*R;
<br>H<Ref(H,N)-QUAD AND L>Ref(L,N)-QUAD
<br>AND Ref(H,1)>H
<p>--Shorts--
<br>N:=-1;
<br>R:=0.01;
<br>QUAD:=Ref(H-L,N)*R;
<br>H<Ref(H,N)-QUAD AND L>Ref(L,N)-QUAD
<br>AND Ref(L,1)<L
<br>
<p>Chuck Wemlinger wrote:
<blockquote TYPE=CITE> <font color="#000000"><font size=-1>List,</font></font> <font color="#000000"><font size=-1>I
am trying to build some system tests based on the TASC Jan 99 article "The
Tactical Trader". The Soybean Gap and Equilateral Quads trading rules
cannot be duplicated exactly since entry is executed at a stop the same
day that all conditions are met. Therefore my entry point is on the
open with a delay of 0. Now I would like to exit at the close of
the same day. It seems the system tester (which now allows for seperate
entry and exit rules in the new 6.52 version) forces the exit to
the next day. Has anyone found this to be true also and is there
a workaround?</font></font> <font size=-1>And, regarding the PRINT
reports to a GENERIC/TEXT file, has anyone noticed that the leading edge
of numbers and trailing edge of text is being truncated? Or is it
just my generic/test print driver? For example Net Profit will report
8.45 when it's really 38.45.</font> <font size=-1>Thanks,</font><font size=-1>Chuck</font></blockquote>
<p>--
<br>mailto:divenfish@xxxxxxxxxxxxx
<br> </html>
</x-html>From ???@??? Fri Jan 08 01:24:29 1999
Received: from listserv.equis.com (204.246.137.2)
by mail02.rapidsite.net (RS ver 1.0.2) with SMTP id 1786
for <neal@xxxxxxxxxxxxx>; Fri, 8 Jan 1999 00:46:21 -0500 (EST)
Received: (from majordom@xxxxxxxxx)
by listserv.equis.com (8.8.7/8.8.7) id WAA04472
for metastock-outgoing; Thu, 7 Jan 1999 22:05:50 -0700
X-Authentication-Warning: listserv.equis.com: majordom set sender to owner-metastock@xxxxxxxxxxxxx using -f
Received: from freeze.metastock.com (freeze.metastock.com [204.246.137.5])
by listserv.equis.com (8.8.7/8.8.7) with ESMTP id WAA04468
for <metastock@xxxxxxxxxxxxxxxxxx>; Thu, 7 Jan 1999 22:05:47 -0700
From: divenfish@xxxxxxxxxxxxx
Received: from mx2.freewwweb.com (mx2.freewwweb.com [205.181.80.249])
by freeze.metastock.com (8.8.5/8.8.5) with ESMTP id WAA16922
for <metastock@xxxxxxxxxxxxx>; Thu, 7 Jan 1999 22:22:43 -0700 (MST)
Received: from freewwweb.com (ppp-45.tc-1.tpa.smartworld.net [12.14.102.173])
by mx2.freewwweb.com (8.9.1/8.9.1) with ESMTP id AAA13698352
for <metastock@xxxxxxxxxxxxx>; Fri, 8 Jan 1999 00:14:29 -0500 (EST)
Message-ID: <36959391.7EE21D18@xxxxxxxxxxxxx>
Date: Fri, 08 Jan 1999 00:11:46 -0500
X-Mailer: Mozilla 4.5 [en] (Win95; U)
X-Accept-Language: en
MIME-Version: 1.0
To: metastock@xxxxxxxxxxxxx
Subject: Re: System Test HELP
References: <000b01be3aa8$168b57a0$9793c4ce@xxxxxxxx> <36958F9A.D60D5A54@xxxxxxxxxxxxx>
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Sender: owner-metastock@xxxxxxxxxxxxx
Precedence: bulk
Reply-To: metastock@xxxxxxxxxxxxx
X-Loop-Detect: 1
X-UIDL: 9d72f4447acd840b5e7d847bc38b2a11
divenfish@xxxxxxxxxxxxx wrote:
>
> Set trade entry price to high with zero delay.
For buys only.
Run separate test for shorts using low.
|