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

Re: Dynamic Multiple Time Frames



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.3110.7"' name=GENERATOR>
</HEAD>
<BODY>
<DIV>Adam,</DIV>
<DIV>&nbsp;</DIV>
<DIV>I'm not real sure but should the below reference line 
&quot;&lt;&lt;&lt;&lt;This line&quot; be:</DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;&nbsp;&nbsp;&nbsp; {then}(HighestSince(<FONT color=#000000 face=Arial 
size=3><STRONG>1</STRONG></FONT>,DayOfWeek()=1,H)+</DIV>
<DIV>&nbsp;</DIV>
<DIV>ie. with a 1 rather than a 2?</DIV>
<DIV>&nbsp;</DIV>
<DIV>Chuck&nbsp;</DIV>
<DIV><FONT face=Arial size=2>-----Original Message-----<BR>From: Adam Hefner 
&lt;VonHef@xxxxxxxxxx&gt;<BR>To: <A 
href="mailto:metastock@xxxxxxxxxxxxx";>metastock@xxxxxxxxxxxxx</A> &lt;<A 
href="mailto:metastock@xxxxxxxxxxxxx";>metastock@xxxxxxxxxxxxx</A>&gt;<BR>Date: 
Tuesday, January 05, 1999 9:07 PM<BR>Subject: Re: Dynamic Multiple Time 
Frames<BR><BR></DIV></FONT>&gt;Here is an update to one of the formula's to 
compensate for<BR>&gt;missing trade periods (Holiday's).<BR>&gt;<BR>&gt;name: 
FT-FBP<BR>&gt;<BR>&gt;&nbsp; {Fibonacci Trader - Fixed Balance 
Point}<BR>&gt;&nbsp; {NOTE: under Color/Style options, 
change<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; plot to last 
&quot;style&quot; option}<BR>&gt;<BR>&gt; {Fixed Balance Point 
Calculation}<BR>&gt;FBC:=If(DayOfWeek()=1 AND 
Ref(DayOfWeek(),-1)<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp; 
&lt;5,<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp; 
{then}(HighestSince(2,DayOfWeek()=1,H)+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
&lt;&lt;&lt;&lt;&lt;&lt;&lt;This 
line<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
LowestSince(1,DayOfWeek()=1,L)+<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
CLOSE)/3,<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp; 
{else}If(DayOfWeek()=5,<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
{then}(HighestSince(1,DayOfWeek()=1,H)+<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
LowestSince(1,DayOfWeek()=1,L)+<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
CLOSE)/3,<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
{else}0));<BR>&gt; {Fixed Balance Point 
Plot}<BR>&gt;FBP:=ValueWhen(1,FBC&gt;0,FBC);<BR>&gt;FBP<BR>&gt;<BR>&gt;&nbsp; 
Best wishes,<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Adam Hefner.<BR>&gt; <A 
href="mailto:VonHef@xxxxxxxxxx";>VonHef@xxxxxxxxxx</A><BR>&gt;<BR>&gt;-------------------------------------<BR>&gt;-----Original 
Message-----<BR>&gt;From: Chuck Wemlinger &lt;<A 
href="mailto:yeti@xxxxxxxxxxxxxxx";>yeti@xxxxxxxxxxxxxxx</A>&gt;<BR>&gt;To: <A 
href="mailto:metastock@xxxxxxxxxxxxx";>metastock@xxxxxxxxxxxxx</A> &lt;<A 
href="mailto:metastock@xxxxxxxxxxxxx";>metastock@xxxxxxxxxxxxx</A>&gt;<BR>&gt;Date: 
Tuesday, January 05, 1999 1:00 AM<BR>&gt;Subject: Re: Dynamic Multiple Time 
Frames<BR>&gt;<BR>&gt;<BR>&gt;&gt;Adam,<BR>&gt;&gt;<BR>&gt;&gt;Gee, 
thanks.&nbsp; I was just working on this and along comes your e-mail.&nbsp; 
I'll<BR>&gt;&gt;check it out 
tomorrow.<BR>&gt;&gt;<BR>&gt;&gt;Chuck<BR>&gt;&gt;<BR>&gt;&gt;-----Original 
Message-----<BR>&gt;&gt;From: Adam Hefner &lt;<A 
href="mailto:VonHef@xxxxxxxxxx";>VonHef@xxxxxxxxxx</A>&gt;<BR>&gt;&gt;To: 
MetaStock &lt;<A 
href="mailto:metastock@xxxxxxxxxxxxx";>metastock@xxxxxxxxxxxxx</A>&gt;<BR>&gt;&gt;Date: 
Monday, January 04, 1999 9:56 PM<BR>&gt;&gt;Subject: Dynamic Multiple Time 
Frames<BR>&gt;&gt;<BR>&gt;&gt;<BR>&gt;&gt;&gt;In the 1999 Bonus Issue of TASC 
the article by Robert Krausz named<BR>&gt;&gt;&gt;&quot;Dynamic Multiple Time 
Frames&quot;, he describes a method of using<BR>&gt;&gt;&gt;different time 
frames to determine trends. In the section he 
calls<BR>&gt;&gt;&gt;&quot;Fibonacci Trader&quot; he reveals how to calculate 
different indicators<BR>&gt;&gt;&gt;he calls &quot;Balance Points&quot; I have 
coded my interpretation of his<BR>&gt;indicators,<BR>&gt;&gt;&gt;please 
examine.....and let me know if the logic is 
correct.<BR>&gt;&gt;&gt;<BR>&gt;&gt;&gt;name: FT-S&amp;R<BR>&gt;&gt;&gt;&nbsp; 
{Fibonacci Trader- Support &amp; Resistance}<BR>&gt;&gt;&gt;&nbsp; {NOTE: under 
Color/Style options, 
change<BR>&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; plot to 
last &quot;style&quot; option}<BR>&gt;&gt;&gt;<BR>&gt;&gt;&gt; {Weekly Price 
Range 
Calculation}<BR>&gt;&gt;&gt;WRC:=If(DayOfWeek()&gt;=5,<BR>&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; 
{then}HighestSince(1,DayOfWeek()=1,H)-<BR>&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
LowestSince(1,DayOfWeek()=1,L),<BR>&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; 
{else}0);<BR>&gt;&gt;&gt;WRP:=ValueWhen(1,WRC&gt;0,WRC);<BR>&gt;&gt;&gt; 
{Resistance Range}<BR>&gt;&gt;&gt;RR1:= 
FmlVar(&quot;FT-FBP&quot;,&quot;FBP&quot;)+(WRP*.5);<BR>&gt;&gt;&gt;RR2:= 
FmlVar(&quot;FT-FBP&quot;,&quot;FBP&quot;)+(WRP*.618);<BR>&gt;&gt;&gt; {Support 
Range}<BR>&gt;&gt;&gt;SR1:= 
FmlVar(&quot;FT-FBP&quot;,&quot;FBP&quot;)-(WRP*.5);<BR>&gt;&gt;&gt;SR2:= 
FmlVar(&quot;FT-FBP&quot;,&quot;FBP&quot;)-(WRP*.618);<BR>&gt;&gt;&gt; {Plot 
Ranges}<BR>&gt;&gt;&gt;RR1;<BR>&gt;&gt;&gt;RR2;<BR>&gt;&gt;&gt;SR1;<BR>&gt;&gt;&gt;SR2;<BR>&gt;&gt;&gt;<BR>&gt;&gt;&gt;name: 
FT-FBP<BR>&gt;&gt;&gt;&nbsp; {Fibonacci Trader - Fixed Balance 
Point}<BR>&gt;&gt;&gt;&nbsp; {NOTE: under Color/Style options, 
change<BR>&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
plot to last &quot;style&quot; option}<BR>&gt;&gt;&gt;<BR>&gt;&gt;&gt; {Fixed 
Balance Point 
Calculation}<BR>&gt;&gt;&gt;FBC:=If(DayOfWeek()=5,<BR>&gt;&gt;&gt;&nbsp;&nbsp;&nbsp; 
{then}(HighestSince(1,DayOfWeek()=1,H)+<BR>&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
LowestSince(1,DayOfWeek()=1,L)+<BR>&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
CLOSE)/3,<BR>&gt;&gt;&gt;&nbsp;&nbsp;&nbsp; {else}0);<BR>&gt;&gt;&gt; {Fixed 
Balance Point 
Plot}<BR>&gt;&gt;&gt;FBP:=ValueWhen(1,FBC&gt;0,FBC);<BR>&gt;&gt;&gt;FBP<BR>&gt;&gt;&gt;<BR>&gt;&gt;&gt;name: 
FT-DBP<BR>&gt;&gt;&gt;&nbsp; {Fibonacci Trader - Dynamic Balance 
Point}<BR>&gt;&gt;&gt;&nbsp; {Dynamic Balance Point 
Calculation}<BR>&gt;&gt;&gt;dt:=DayOfWeek();<BR>&gt;&gt;&gt;DBC:=(HighestSince(5,DayOfWeek()=dt,H)+<BR>&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; 
LowestSince(5,DayOfWeek()=dt,L)+CLOSE)/3;<BR>&gt;&gt;&gt;DBC;<BR>&gt;&gt;&gt;<BR>&gt;&gt;&gt;name: 
FT-FBPS<BR>&gt;&gt;&gt;&nbsp; {Fibonacci Trader-Fixed Balance Point 
Step}<BR>&gt;&gt;&gt;FPS:=(ValueWhen(1,FmlVar(&quot;FT-FBP&quot;,&quot;FBC&quot;)&gt;0,<BR>&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; 
FmlVar(&quot;FT-FBP&quot;,&quot;FBC&quot;)) 
+<BR>&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; 
ValueWhen(2,FmlVar(&quot;FT-FBP&quot;,&quot;FBC&quot;)&gt;0,<BR>&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; 
FmlVar(&quot;FT-FBP&quot;,&quot;FBC&quot;)) 
+<BR>&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; 
ValueWhen(3,FmlVar(&quot;FT-FBP&quot;,&quot;FBC&quot;)&gt;0,<BR>&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; 
FmlVar(&quot;FT-FBP&quot;,&quot;FBC&quot;)) 
+<BR>&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; 
ValueWhen(4,FmlVar(&quot;FT-FBP&quot;,&quot;FBC&quot;)&gt;0,<BR>&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; 
FmlVar(&quot;FT-FBP&quot;,&quot;FBC&quot;)) 
+<BR>&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; 
ValueWhen(5,FmlVar(&quot;FT-FBP&quot;,&quot;FBC&quot;)&gt;0,<BR>&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; 
FmlVar(&quot;FT-FBP&quot;,&quot;FBC&quot;)))/5;<BR>&gt;&gt;&gt;FPS<BR>&gt;&gt;&gt;<BR>&gt;&gt;&gt;name: 
FT-DBPS<BR>&gt;&gt;&gt;&nbsp; {Fibonacci Trader-Dynamic Balance Point 
Step}<BR>&gt;&gt;&gt;DPS:=(ValueWhen(1,FmlVar(&quot;FT-DBP&quot;,&quot;DBC&quot;),<BR>&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; 
FmlVar(&quot;FT-DBP&quot;,&quot;DBC&quot;))+<BR>&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; 
ValueWhen(5,FmlVar(&quot;FT-DBP&quot;,&quot;DBC&quot;),<BR>&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; 
FmlVar(&quot;FT-DBP&quot;,&quot;DBC&quot;))+<BR>&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; 
ValueWhen(10,FmlVar(&quot;FT-DBP&quot;,&quot;DBC&quot;),<BR>&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; 
FmlVar(&quot;FT-DBP&quot;,&quot;DBC&quot;))+<BR>&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; 
ValueWhen(15,FmlVar(&quot;FT-DBP&quot;,&quot;DBC&quot;),<BR>&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; 
FmlVar(&quot;FT-DBP&quot;,&quot;DBC&quot;))+<BR>&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; 
ValueWhen(20,FmlVar(&quot;FT-DBP&quot;,&quot;DBC&quot;),<BR>&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; 
FmlVar(&quot;FT-DBP&quot;,&quot;DBC&quot;)))/5;<BR>&gt;&gt;&gt;DPS;<BR>&gt;&gt;&gt;<BR>&gt;&gt;&gt;&nbsp; 
Best wishes,<BR>&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Adam 
Hefner.<BR>&gt;&gt;&gt; <A 
href="mailto:VonHef@xxxxxxxxxx";>VonHef@xxxxxxxxxx</A><BR>&gt;&gt;&gt;<BR>&gt;&gt;&gt;-------------------------------------<BR>&gt;&gt;&gt;<BR>&gt;&gt;&gt;<BR>&gt;&gt;<BR>&gt;&gt;<BR>&gt;<BR>&gt;</BODY></HTML>
</x-html>From ???@??? Fri Jan 08 01:46:08 1999
Received: from listserv.equis.com (204.246.137.2)
	by mail02.rapidsite.net (RS ver 1.0.2) with SMTP id 6630
	for <neal@xxxxxxxxxxxxx>; Fri,  8 Jan 1999 04:45:11 -0500 (EST)
Received: (from majordom@xxxxxxxxx)
	by listserv.equis.com (8.8.7/8.8.7) id BAA07492
	for metastock-outgoing; Fri, 8 Jan 1999 01:53:09 -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 BAA07487
	for <metastock@xxxxxxxxxxxxxxxxxx>; Fri, 8 Jan 1999 01:53:06 -0700
From: bspark@xxxxxxxxxxxxxxxxxx
Received: from spark.bspark.com.au (spark.bspark.com.au [203.59.16.129])
	by freeze.metastock.com (8.8.5/8.8.5) with ESMTP id CAA17164
	for <metastock@xxxxxxxxxxxxx>; Fri, 8 Jan 1999 02:10:01 -0700 (MST)
Received: from benzie (benz [203.59.16.130]) by spark.bspark.com.au (8.7.1/8.7.1) with SMTP id QAA19372 for <metastock@xxxxxxxxxxxxx>; Fri, 8 Jan 1999 16:40:51 +0800
Message-Id: <199901080840.QAA19372@xxxxxxxxxxxxxxxxxxx>
To: metastock@xxxxxxxxxxxxx
Date: Fri, 8 Jan 1999 16:38:47 +7
MIME-Version: 1.0
Content-type: text/plain; charset=US-ASCII
Content-transfer-encoding: 7BIT
Subject: Re: Jim Greening Trading Channels
In-reply-to: <002901be3ad1$1fb3b740$a266fbd0@xxxxxxxx>
X-mailer: Pegasus Mail for Win32 (v3.01d)
Sender: owner-metastock@xxxxxxxxxxxxx
Precedence: bulk
Reply-To: metastock@xxxxxxxxxxxxx
X-Loop-Detect: 1
X-UIDL: ba7ddb442bdecabc75fd24c00084fe3b

Jim,

Thanks for the reply. Your advice and assistance is greatly appreciated.

> Benzie,
>      I don't know if you saw my building block posts on how I construct my
> trend channels and set my targets and stops or not.  I'll copy them below.
> First of all you need a least a couple of weeks data to construct the
> channel.  For long positions, I will move the end point to the right
> whenever there is a new high for the channel.  If a new high isn't made
> during the day, I don't change the channel.  Therefore, the price moving
> up will affect the channel, but the price moving down won't.  However, I
> do look at the channel every night and change the target and stop based on
> where the next trading days data would plot.  I only move the targets and
> stops up in whole number increments with the target always being a whole
> number and the stop always being a x 3/4 number.  In theory, you should
> never lower a target or stop, but I do cheat occasionally <G>.
>
************************
Brightspark
sales@xxxxxxxxxxxxx
Voice: +61 9 375-1178
Fax: +61 9 375-1668
Unit 7, 11-13 Marchant Way
Morley WA 6062 Australia
Visit our WEB Page
http://www.bspark.com.au
************************