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

Re: Zero Balance



PureBytes Links

Trading Reference Links

<x-html><!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
&nbsp;
<br>I believe the last leg is always dynamic.
<br>Don't hold me to any of the following, but if I remember correctly,
the last peak or trough is dynamic until price exceeds or equals the user
specified Zig Zag points or percentage.&nbsp; In the case of a potential
Zig Zag trough "\/" of say 1 point&nbsp; [Zig(LOW,1,$)], a subsequent bar's
low would have to exceed or equal the low of the trough in question by
the minimum user defined value, in this case 1 point.&nbsp; Once this has
occurred, that trough becomes static, or locked in.&nbsp;&nbsp; So if the
low of the potential trough is 50, the trough would be established once
a subsequent bar's low equals or exceeds 51.
<p>If using a 1 point Zig Zag of the close [Zig(CLOSE,1,$)], the trough
in question would become static once a subsequent bar's close has exceeded,
by 1 point, the lowest close of the trough in question.
<br>But...I'd advise you to check it out for yourself because I wouldn't
want to lead you astray. :)
<br>You can create an indicator or two to define at what value this will
happen or when it has happened.&nbsp; Or an expert to color the bars.
<p>The following uses 1 point and Low as the input, and should plot a 1
when the 1 point
<br>Zig Zag trough [Zig(L,1,$)] in question is is no longer dynamic:
<br>L>=Trough(1,Zig(L,1,$),.001) + 1&nbsp;&nbsp; {This uses less code and
seems to work similar
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
to what I had been using, but I have not thoroughly
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
checked it out.}
<p>The following, which uses 1 percent, not 1 point, should plot a 1 when
the 1% trough
<br>[Trough(1 ,L ,1 )] in question is is no longer dynamic:
<br>L >= Trough(1 ,L ,1 ) * 1.01
<p>The same logic could be applied to the Zig Zag of the close.
<br>Please let me know if what I've said is wrong.
<p>Ken
<br>--
<br>mailto:divenfish@xxxxxxxxxxxxx
<br>&nbsp;
<p>Adam Hefner wrote:
<blockquote TYPE=CITE>Lionel,
<br>My understanding of the Zig-Zag is that the last leg and possibly the
<br>last zig/zag (peak/trough) could also be dynamic. Of course there
<br>comes a point when the last zig/zag (peak/trough) is no longer dynamic,
<br>but how do you determine when this happens?
<br>&nbsp;As for the Zero Balance indicator....if there is enough interest
in this
<br>indicator, I&nbsp; could revise it. I have learned a few tricks since
I
<br>programmed
<br>it, and have been thinking of replacing the Zig Zag with a modified
<br>"Dunnigan Trend" method or something similar.
<p>&nbsp; Best wishes,
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Adam Hefner.
<br>VonHef@xxxxxxxxxxxxx
<br>VonHef@xxxxxxxxxx
<p>---------------------------------------
<br>-----Original Message-----
<br>From: Lionel and Gail Issen &lt;lissen@xxxxxxxxxxxxxxxx>
<br>To: metastock@xxxxxxxxxxxxx &lt;metastock@xxxxxxxxxxxxx>
<br>Date: Wednesday, January 13, 1999 11:57 PM
<br>Subject: Re: Zero Balance
<p>>Isnt it just the last leg of the zig-zag indicator that changes daily?
<br>>
<br>>Lionel Issen
<br>>-----Original Message-----
<br>>From: The Lurker &lt;rcbarlow@xxxxxxx>
<br>>To: metastock@xxxxxxxxxxxxx &lt;metastock@xxxxxxxxxxxxx>
<br>>Date: Wednesday, January 13, 1999 6:00 PM
<br>>Subject: Re: Zero Balance
<br>>
<br>>
<br>>>Guy Tann wrote:
<br>>>>
<br>>>> Randy
<br>>>>
<br>>>> You want to stay away from that Zig Zag indicator.&nbsp; It changes
daily.
<br>>The
<br>>>> value for today's date may or may not be the same as today's value
<br>>tomorrow.
<br>>>>
<br>>>> I developed a dyn-o-mite system several years ago before my dad
looked
<br>at
<br>>it
<br>>>> and started laughing his head off.&nbsp; That system was 100% accurate,
but
<br>>>> there's nothing like 20-20 hindsight.
<br>>>>
<br>>>> Guy
<br>>>>
<br>>>> > -----Original Message-----
<br>>>> > From: owner-metastock@xxxxxxxxxxxxx
<br>>>> > [mailto:owner-metastock@xxxxxxxxxxxxx]On
Behalf Of The Lurker
<br>>>> > Sent: Saturday, January 09, 1999 6:27 PM
<br>>>> > To: metastock@xxxxxxxxxxxxx
<br>>>> > Subject: Re: Zero Balance
<br>>>> >
<br>>>> >
<br>>>> > Adam Hefner wrote:
<br>>>> > >
<br>>>> > >&nbsp; Hello Randy,
<br>>>> > > I'm not sure what the problem is, but I suspect it has to do
<br>>>> > > with the the ZigZag function. The default value is 5%, but
<br>>>> > > I'm not exactly sure what the "5%" is based on (does some-
<br>>>> > > one else know?), all I know is that it is based on the price
<br>>>> > > in some way. Below you will find an updated version that
<br>>>> > > allows the "%" amount to be chosen. Have you found any
<br>>>> > > benefit from this indicator? I personally found it to be a
<br>>>> > > little unreliable, but perhaps someone has found useful.
<br>>>> > >________________________________CUT________________________________
<br>>>> >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
Adam Hefner
<br>>>> > > >Adam,
<br>>>> > > >I am not at all familiar with Metastock programming although
I use
<br>>>> > > >Metastock 6.5(6.52), but my question is:&nbsp; Why does the
above code
<br>>not
<br>>>> > > >work on Financials such as Jap Yen, Swiss Franc, Br Pound,
etc?
<br>>>> > > >Is there another way to code this to work on Currencies?
<br>>>> > > >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
Thanks
<br>>>> > > >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
Randy
<br>>>> > Adam &amp; all,
<br>>>> > I am trying to combine this with a couple of indicators for testing
<br>>>> > buy/sell signals but it will not work on currencies.&nbsp; Does
anyone else
<br>>>> > out there know if the Zig function is what is keeping it from
working
<br>>>> > on Currencies?
<br>>>> >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
thanks,
<br>>>> >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
Randy
<br>>>> >
<br>>>Guy, I'm glad I got your message today.&nbsp; I was going to start
trading
<br>>>it on the open tommorrow morning.&nbsp; Guess I'll regroup.
<br>>>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
Thanks,
<br>>>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
Randy
<br>>>
<br>>
<br>></blockquote>

<br>&nbsp;</html>
</x-html>From ???@??? Thu Jan 14 11:07:46 1999
Received: from listserv.equis.com (204.246.137.2)
	by mail05.rapidsite.net (RS ver 1.0.2) with SMTP id 2763
	for <neal@xxxxxxxxxxxxx>; Thu, 14 Jan 1999 14:09:28 -0500 (EST)
Received: (from majordom@xxxxxxxxx)
	by listserv.equis.com (8.8.7/8.8.7) id LAA02592
	for metastock-outgoing; Thu, 14 Jan 1999 11:05:43 -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 LAA02588
	for <metastock@xxxxxxxxxxxxxxxxxx>; Thu, 14 Jan 1999 11:05:40 -0700
Received: from gatekeeper.firstenergycorp.com (firewall-user@[192.251.188.99])
	by freeze.metastock.com (8.8.5/8.8.5) with ESMTP id LAA23509
	for <metastock@xxxxxxxxxxxxx>; Thu, 14 Jan 1999 11:23:16 -0700 (MST)
Received: by gatekeeper.firstenergycorp.com; id NAA07441; Thu, 14 Jan 1999 13:12:09 -0500 (EST)
Received: from go-nike-n.oedison.com(172.16.4.114) by gatekeeper.firstenergycorp.com via smap (4.1)
	id xma007426; Thu, 14 Jan 99 13:11:38 -0500
Received: from dgw.oedison.com ([138.21.31.241]) by go-nike-n.oedison.com (Lotus SMTP MTA v4.6.2  (693.3 8-11-1998)) with SMTP id 852566F9.0064451C; Thu, 14 Jan 1999 13:15:12 -0500
Received: by localhost with Microsoft MAPI; Thu, 14 Jan 1999 13:10:58 -0500
Message-ID: <01BE3FBF.53484060.stocknet@xxxxxxx>
From: David Walton <stocknet@xxxxxxx>
To: "'Metastock Mailing List'" <metastock@xxxxxxxxxxxxx>
Subject: S&P 500 Symbols
Date: Thu, 14 Jan 1999 13:10:56 -0500
X-Mailer: Microsoft Internet E-mail/MAPI - 8.0.0.4211
MIME-Version: 1.0
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: 0c95920ed775a6b7d72e7d570d61e8ee

	Does anyone know of a site that has all 500 S&P 500 ticker symbols on it? 
 This could be a page that does delayed quotes or something similar on all 
the components of the S&P 500 index.

	Thanks gents...