PureBytes Links
Trading Reference Links
|
<x-html><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META content="text/html; charset=iso-8859-1" http-equiv=Content-Type>
<META content="MSHTML 5.00.2314.1000" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2>Guy and all,</FONT></DIV>
<DIV> </DIV>
<DIV><FONT face=Arial size=2>Cybercast has triggered a long position for the
first time since October 15th. I liquidated shorts this morning and
initiated long positions on the opening.</FONT></DIV>
<DIV> </DIV>
<DIV><FONT face=Arial size=2>Steve Karnish<BR>Cedar Creek Trading<BR><A
href="http://www.abbracadabra.com/cybercast/">http://www.abbracadabra.com/cybercast/</A></FONT></DIV></BODY></HTML>
</x-html>From ???@??? Wed Dec 01 10:03:14 1999
Return-Path: <majordom@xxxxxxxxxxxxxxxxxx>
Received: from listserv.equis.com (listserv.equis.com [204.246.137.2])
by purebytes.com (8.8.7/8.8.7) with ESMTP id LAA18316
for <neal@xxxxxxxxxxxxx>; Wed, 1 Dec 1999 11:05:17 -0800
Received: (from majordom@xxxxxxxxx)
by listserv.equis.com (8.8.7/8.8.7) id JAA09245
for metastock-outgoing; Wed, 1 Dec 1999 09:44:26 -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 JAA09241
for <metastock@xxxxxxxxxxxxxxxxxx>; Wed, 1 Dec 1999 09:44:23 -0700
Received: from mail.rdc1.bc.home.com (imail@xxxxxxxxxxxxxxxxxxxxxxxxx [24.2.10.66])
by freeze.metastock.com (8.8.5/8.8.5) with ESMTP id JAA27835
for <metastock@xxxxxxxxxxxxx>; Wed, 1 Dec 1999 09:51:14 -0700 (MST)
Received: from cs819150a ([24.65.28.95]) by mail.rdc1.bc.home.com
(InterMail v4.01.01.07 201-229-111-110) with SMTP
id <19991201163608.GUWM3845.mail.rdc1.bc.home.com@xxxxxxxxx>
for <metastock@xxxxxxxxxxxxx>; Wed, 1 Dec 1999 08:36:08 -0800
Message-ID: <011601bf3c1a$29e5b740$5f1c4118@xxxxxxxxxxxxxxxxxxxxxx>
From: "Glen Wallace" <gcwallace@xxxxxxxx>
To: "MetaStock listserver" <metastock@xxxxxxxxxxxxx>
References: <004301bf3bab$f12f0460$2a637dc7@xxxxxx>
Subject: Re: Am I overlooking something?
Date: Wed, 1 Dec 1999 08:33:31 -0800
MIME-Version: 1.0
Content-Type: text/plain;
charset="Windows-1252"
Content-Transfer-Encoding: 7bit
X-Priority: 3
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook Express 5.00.2314.1300
X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300
Sender: owner-metastock@xxxxxxxxxxxxx
Precedence: bulk
Reply-To: metastock@xxxxxxxxxxxxx
Status: O
Owen:
I haven't tested any of these so there could be logic errors, but here's a
starting point,
> "Buy at the open plus half the average true range of the last ten days?"
HIGH >= OPEN + 0.5*Ref(ATR(10), -1)
Although, an annoying system tester limitation restricts trades to be
entered only on the bar's open, high, low or close.
> Or "If these two moving averages cross today, buy on tomorrow's open?"
MA1:= Mov(CLOSE, 10, SIMPLE);
MA2:= Mov(CLOSE, 20, SIMPLE);
Ref(Cross(MA1, MA2), -1)
With System Testing Options | Testing tab | Entry Price set to "Open" and
delay set to zero.
> Or "Exit five bars after entry?"
EntryCondition:= {your trade entry conditions};
BarsSince(EntryCondition >= 5)
Hope this helps. Any interest in sharing the details of the volatility
breakout system you are working on?
Glen
----- Original Message -----
From: Owen Davies <owen@xxxxxxxxxxxxx>
To: <metastock@xxxxxxxxxxxxx>
Sent: November 30, 1999 19:26
Subject: Am I overlooking something?
> This should be an RTFM, but after all, this is trading software
> we're dealing with. A manual that tells you more than can be
> learned by looking at the menus is by definition too much to ask.
>
> So: Is there really no way to specify when I want a trade to
> be executed? Like "Buy at the open plus half the average true
> range of the last ten days?" Or "If these two moving averages
> cross today, buy on tomorrow's open?" Or "Exit five bars
> after entry?"
>
> Just for practice, I tried to program a simple Williams-style
> volatility breakout system this afternoon, and after diligently
> searching the manual, I don't think it can be done.
>
> (Granted that I'm using the offline version at the moment, EOD,
> and the problem changes a lot when you go to intraday data.
> It should still be possible to specify what I want to accomplish.)
>
> Can anyone help?
>
> Many thanks.
>
> Owen Davies
|