PureBytes Links
Trading Reference Links
|
<x-html><!DOCTYPE HTML PUBLIC "-//W3C//DTD W3 HTML//EN">
<HTML>
<HEAD>
<META content=text/html;charset=iso-8859-1 http-equiv=Content-Type>
<META content='"MSHTML 4.72.2106.6"' name=GENERATOR>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT color=#000000 size=2>I have used Elliott as a back up for 30 years.
It is the most frighteningly accurate and at the same time the most frustrating
analytical tool. I do not believe that there is any programme, including GET,
that accurately analyses Elliott, especially in the Irregular corrections. Study
and more study is the only way to appreciate Elliott.</FONT></DIV>
<DIV><FONT color=#000000 size=2>Dr Clive Roffey</FONT></DIV></BODY></HTML>
</x-html>From ???@??? Fri Oct 16 11:33:51 1998
Received: from 204.246.137.2 (204.246.137.2)
by mail02.rapidsite.net (RS ver 0.3) with SMTP id 20059
for <neal@xxxxxxxxxxxxx>; Fri, 16 Oct 1998 14:28:11 -0400 (EDT)
Received: (from majordom@xxxxxxxxx)
by listserv.equis.com (8.8.7/8.8.7) id BAA09554
for metastock-outgoing; Sat, 17 Oct 1998 01:24:05 -0600
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 BAA09548
for <metastock@xxxxxxxxxxxxxxxxxx>; Sat, 17 Oct 1998 01:23:58 -0600
From: Brookemail@xxxxxxx
Received: from imo17.mx.aol.com (imo17.mx.aol.com [198.81.17.7])
by freeze.metastock.com (8.8.5/8.8.5) with ESMTP id LAA08376
for <metastock@xxxxxxxxxxxxx>; Fri, 16 Oct 1998 11:29:26 -0600 (MDT)
Received: from Brookemail@xxxxxxx
by imo17.mx.aol.com (IMOv16.10) id ALHPa04133
for <metastock@xxxxxxxxxxxxx>; Fri, 16 Oct 1998 13:06:53 -0400 (EDT)
Message-ID: <e8b0e121.36277d2d@xxxxxxx>
Date: Fri, 16 Oct 1998 13:06:53 EDT
To: metastock@xxxxxxxxxxxxx
Mime-Version: 1.0
Subject: Re: LTD and Shark Pattern
Content-type: text/plain; charset=US-ASCII
Content-transfer-encoding: 7bit
X-Mailer: AOL 4.0 for Windows 95 sub 214
Sender: owner-metastock@xxxxxxxxxxxxx
Precedence: bulk
Reply-To: metastock@xxxxxxxxxxxxx
X-Loop-Detect: 1
In a message dated 10/16/98 9:06:26 AM Pacific Daylight Time, fred.j@xxxxxxxxx
writes:
> The shark pattern for LTD started on 10/8/98 (at least according to EOD data
> I receive).
> Fred
Sorry, Fred -- I just don't see a Shark pattern for that period on my chart of
LTD. It could be that our data isn't the same, but I wonder whether we're
using the same formula. Here's the formula I'm using, in the Expert Advisor:
Symmetry:=.28;
Apex:=(H+L)/2;
WB:=Ref(H,-2)-Ref(L,-2);
Shark:=If((H<Ref(H,-1) AND L>Ref(L,-1) AND Ref(H,-1)<Ref(H,-2) AND
Ref(L,-1)>Ref(L,-2))=1,
If(apex <= (Ref(H,-2)-(WB*Symmetry)) AND Apex >=
(Ref(L,-2)+(WB*Symmetry)) ,1,0),0);
Buyok:=Cross(C,ValueWhen(1,Shark=1,Ref(H,-2)));
Chk:=Cum(Buyok)-ValueWhen(1,Shark=1,Cum(Buyok));
ValidChk:=Alert(Shark=1,25);
Buy:= Buyok=1 AND Ref(Chk,-1)=0 AND ValidChk=1;
Buy;
*****************************
I don't even see that the pattern has occurred this month. I use this formula
for the pattern in the Indicator Builder:
Symmetry:=.28;
Apex:=(H+L)/2;
WB:=Ref(H,-2)-Ref(L,-2);
If((H<Ref(H,-1) AND L>Ref(L,-1) AND Ref(H,-1)<Ref(H,-2) AND
Ref(L,-1)>Ref(L,-2)),
If(apex <= (Ref(H,-2)-(WB*Symmetry)) AND Apex >=
(Ref(L,-2)+(WB*Symmetry)) ,1,0),0);
***************
Brooke
|