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

SV: Dynamic Multiple Time Frames - WHERE?



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 bgColor=#ffffff>
<DIV><FONT color=#000000>Hi Adam!</FONT></DIV>
<DIV><FONT color=#000000></FONT>&nbsp;</DIV>
<DIV>Don&acute;t judge me too hard but I cannot find the article in the bonus 
issue.</DIV>
<DIV>Can you direct me to the exact page?</DIV>
<DIV>&nbsp;</DIV>
<DIV>Chris Lindstedt</DIV>
<BLOCKQUOTE 
style="BORDER-LEFT: #000000 solid 2px; MARGIN-LEFT: 5px; PADDING-LEFT: 5px">
    <DIV><FONT face=Arial size=2><B>-----Ursprungligt 
    meddelande-----</B><BR><B>Fr&aring;n: </B>Adam Hefner &lt;<A 
    href="mailto:VonHef@xxxxxxxxxx";>VonHef@xxxxxxxxxx</A>&gt;<BR><B>Till: 
    </B>MetaStock &lt;<A 
    href="mailto:metastock@xxxxxxxxxxxxx";>metastock@xxxxxxxxxxxxx</A>&gt;<BR><B>Datum: 
    </B>den 5 januari 1999 05:51<BR><B>&Auml;mne: </B>Dynamic Multiple Time 
    Frames<BR><BR></DIV></FONT>In the 1999 Bonus Issue of TASC the article by 
    Robert Krausz named<BR>&quot;Dynamic Multiple Time Frames&quot;, he 
    describes a method of using<BR>different time frames to determine trends. In 
    the section he calls<BR>&quot;Fibonacci Trader&quot; he reveals how to 
    calculate different indicators<BR>he calls &quot;Balance Points&quot; I have 
    coded my interpretation of his indicators,<BR>please examine.....and let me 
    know if the logic is correct.<BR><BR>name: FT-S&amp;R<BR>&nbsp; {Fibonacci 
    Trader- Support &amp; Resistance}<BR>&nbsp; {NOTE: under Color/Style 
    options, change<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; plot to 
    last &quot;style&quot; option}<BR><BR>{Weekly Price Range 
    Calculation}<BR>WRC:=If(DayOfWeek()&gt;=5,<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
    {then}HighestSince(1,DayOfWeek()=1,H)-<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
    LowestSince(1,DayOfWeek()=1,L),<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
    {else}0);<BR>WRP:=ValueWhen(1,WRC&gt;0,WRC);<BR>{Resistance Range}<BR>RR1:= 
    FmlVar(&quot;FT-FBP&quot;,&quot;FBP&quot;)+(WRP*.5);<BR>RR2:= 
    FmlVar(&quot;FT-FBP&quot;,&quot;FBP&quot;)+(WRP*.618);<BR>{Support 
    Range}<BR>SR1:= 
    FmlVar(&quot;FT-FBP&quot;,&quot;FBP&quot;)-(WRP*.5);<BR>SR2:= 
    FmlVar(&quot;FT-FBP&quot;,&quot;FBP&quot;)-(WRP*.618);<BR>{Plot 
    Ranges}<BR>RR1;<BR>RR2;<BR>SR1;<BR>SR2;<BR><BR>name: FT-FBP<BR>&nbsp; 
    {Fibonacci Trader - Fixed Balance Point}<BR>&nbsp; {NOTE: under Color/Style 
    options, 
    change<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
    plot to last &quot;style&quot; option}<BR><BR>{Fixed Balance Point 
    Calculation}<BR>FBC:=If(DayOfWeek()=5,<BR>&nbsp;&nbsp;&nbsp; 
    {then}(HighestSince(1,DayOfWeek()=1,H)+<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
    LowestSince(1,DayOfWeek()=1,L)+<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
    CLOSE)/3,<BR>&nbsp;&nbsp;&nbsp; {else}0);<BR>{Fixed Balance Point 
    Plot}<BR>FBP:=ValueWhen(1,FBC&gt;0,FBC);<BR>FBP<BR><BR>name: 
    FT-DBP<BR>&nbsp; {Fibonacci Trader - Dynamic Balance Point}<BR>&nbsp; 
    {Dynamic Balance Point Calculation}<BR>dt:=DayOfWeek(); 
    <BR>DBC:=(HighestSince(5,DayOfWeek()=dt,H)+<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
    LowestSince(5,DayOfWeek()=dt,L)+CLOSE)/3;<BR>DBC;<BR><BR>name: 
    FT-FBPS<BR>&nbsp; {Fibonacci Trader-Fixed Balance Point 
    Step}<BR>FPS:=(ValueWhen(1,FmlVar(&quot;FT-FBP&quot;,&quot;FBC&quot;)&gt;0,<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
    FmlVar(&quot;FT-FBP&quot;,&quot;FBC&quot;)) +<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
    ValueWhen(2,FmlVar(&quot;FT-FBP&quot;,&quot;FBC&quot;)&gt;0,<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
    FmlVar(&quot;FT-FBP&quot;,&quot;FBC&quot;)) +<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
    ValueWhen(3,FmlVar(&quot;FT-FBP&quot;,&quot;FBC&quot;)&gt;0,<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
    FmlVar(&quot;FT-FBP&quot;,&quot;FBC&quot;)) +<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
    ValueWhen(4,FmlVar(&quot;FT-FBP&quot;,&quot;FBC&quot;)&gt;0,<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
    FmlVar(&quot;FT-FBP&quot;,&quot;FBC&quot;)) +<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
    ValueWhen(5,FmlVar(&quot;FT-FBP&quot;,&quot;FBC&quot;)&gt;0,<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
    FmlVar(&quot;FT-FBP&quot;,&quot;FBC&quot;)))/5;<BR>FPS<BR><BR>name: 
    FT-DBPS<BR>&nbsp; {Fibonacci Trader-Dynamic Balance Point 
    Step}<BR>DPS:=(ValueWhen(1,FmlVar(&quot;FT-DBP&quot;,&quot;DBC&quot;),<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
    FmlVar(&quot;FT-DBP&quot;,&quot;DBC&quot;))+<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
    ValueWhen(5,FmlVar(&quot;FT-DBP&quot;,&quot;DBC&quot;),<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
    FmlVar(&quot;FT-DBP&quot;,&quot;DBC&quot;))+<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
    ValueWhen(10,FmlVar(&quot;FT-DBP&quot;,&quot;DBC&quot;),<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
    FmlVar(&quot;FT-DBP&quot;,&quot;DBC&quot;))+<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
    ValueWhen(15,FmlVar(&quot;FT-DBP&quot;,&quot;DBC&quot;),<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
    FmlVar(&quot;FT-DBP&quot;,&quot;DBC&quot;))+<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
    ValueWhen(20,FmlVar(&quot;FT-DBP&quot;,&quot;DBC&quot;),<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
    FmlVar(&quot;FT-DBP&quot;,&quot;DBC&quot;)))/5;<BR>DPS;<BR><BR>&nbsp; Best 
    wishes,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Adam Hefner.<BR><A 
    href="mailto:VonHef@xxxxxxxxxx";>VonHef@xxxxxxxxxx</A><BR><BR>-------------------------------------<BR><BR></BLOCKQUOTE></BODY></HTML>
</x-html>From ???@??? Wed Jan 06 07:14:59 1999
Received: from listserv.equis.com (204.246.137.2)
	by mail02.rapidsite.net (RS ver 1.0.2) with SMTP id 7618
	for <neal@xxxxxxxxxxxxx>; Wed,  6 Jan 1999 08:13:08 -0500 (EST)
Received: (from majordom@xxxxxxxxx)
	by listserv.equis.com (8.8.7/8.8.7) id FAA13625
	for metastock-outgoing; Wed, 6 Jan 1999 05:31:48 -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 FAA13622
	for <metastock@xxxxxxxxxxxxxxxxxx>; Wed, 6 Jan 1999 05:31:46 -0700
Received: from angel.algonet.se (angel.algonet.se [194.213.74.112])
	by freeze.metastock.com (8.8.5/8.8.5) with SMTP id FAA15106
	for <metastock@xxxxxxxxxxxxx>; Wed, 6 Jan 1999 05:48:33 -0700 (MST)
Received: (qmail 9934 invoked from network); 6 Jan 1999 13:37:34 +0100
Received: from du250-27.ppp.algonet.se (HELO bbdata) (195.100.27.250)
  by angel.algonet.se with SMTP; 6 Jan 1999 13:37:34 +0100
Message-ID: <002601be3971$5d3e3c40$fa1b64c3@xxxxxx>
From: "BJÖRN BOLUMLID" <bolum@xxxxxxxxxx>
To: "EQUIS MAIL-list" <metastock@xxxxxxxxxxxxx>
Subject: DownLoader 6.5 Questions 
Date: Wed, 6 Jan 1999 13:33:53 +0100
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="----=_NextPart_000_0018_01BE3979.3393C1A0"
X-Priority: 3
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook Express 4.72.2106.4
X-MimeOLE: Produced By Microsoft MimeOLE V4.72.2106.4
Sender: owner-metastock@xxxxxxxxxxxxx
Precedence: bulk
Reply-To: metastock@xxxxxxxxxxxxx
X-Loop-Detect: 1
X-UIDL: b6ff9d1b050fe4ab67372e2d8ff7ab93

<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.11"' name=GENERATOR>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT color=#000000>Hi</FONT></DIV>
<DIV><FONT color=#000000>I found this on Equis &quot;Update and Patch 
Files&quot; :</FONT></DIV>
<DIV><FONT color=#000000><STRONG><U>dlw_up.exe</U></STRONG> </FONT></DIV>
<DIV><FONT color=#000000>&nbsp;&nbsp;&nbsp; This patch fixes a volume problem in 
the DownLoader 6.5 (decimal point) when manually entering data in a data sheet. 
To apply this patch, place the file in the folder with DLWin.exe and 
double-click on it. (<EM>dated 2/9/97, 272 Kb)</EM></FONT></DIV>
<DIV><FONT color=#000000><EM></EM></FONT>&nbsp;</DIV>
<DIV><FONT color=#000000>Questions about this :</FONT></DIV>
<OL>
    <LI><FONT color=#000000>Should I install this before I run the 6.52 
    EoD-patch ?</FONT></LI>
    <LI><FONT color=#000000>After install of 6.52 EoD-patch will DL accept 
    &quot;spacebar&quot; to demarcate 1000-digit (1 000 000) instead for komma 
    (1,000,000) AND most of all will it accept komma ( , ) as separator for 
    decimal (in H , L , C - columns) (100,10) now it only accept (100.10) the 
    dot ( . ) from the main keyboard . As it is now it is stupid , the right 
    hand most live the numeric keyboard and finds the dot-key on the main 
    keyboard , desirable is to use the komma(del)-key on the numeric 
    keyboard.</FONT></LI></OL>
<DIV><FONT color=#000000>Hopfully somebody out there have an answer</FONT></DIV>
<DIV><FONT color=#000000></FONT>&nbsp;</DIV>
<DIV><FONT color=#000000>Thanks in advance</FONT></DIV>
<DIV><FONT color=#000000>&nbsp;BoL</FONT></DIV></BODY></HTML>
</x-html>From ???@??? Wed Jan 06 07:15:05 1999
Received: from listserv.equis.com (204.246.137.2)
	by mail05.rapidsite.net (RS ver 1.0.2) with SMTP id 7729
	for <neal@xxxxxxxxxxxxx>; Wed,  6 Jan 1999 09:10:09 -0500 (EST)
Received: (from majordom@xxxxxxxxx)
	by listserv.equis.com (8.8.7/8.8.7) id GAA13918
	for metastock-outgoing; Wed, 6 Jan 1999 06:07:54 -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 GAA13915
	for <metastock@xxxxxxxxxxxxxxxxxx>; Wed, 6 Jan 1999 06:07:51 -0700
Received: from itl2.itlnet.net (itl2.itlnet.net [206.154.167.102])
	by freeze.metastock.com (8.8.5/8.8.5) with ESMTP id GAA15133
	for <metastock@xxxxxxxxxxxxx>; Wed, 6 Jan 1999 06:24:39 -0700 (MST)
Received: from VonHef (tc1ras020.itlnet.net [206.155.251.20])
          by itl2.itlnet.net (Post.Office MTA v3.5.3 release 223
          ID# 0-52320U2500L250S0V35) with SMTP id net
          for <metastock@xxxxxxxxxxxxx>; Wed, 6 Jan 1999 07:08:43 -0600
Message-ID: <002301be3976$701b15e0$14fb9bce@xxxxxxxxxxxxxxxxx>
From: "Adam Hefner" <VonHef@xxxxxxxxxx>
To: <metastock@xxxxxxxxxxxxx>
Subject: Re: Dynamic Multiple Time Frames - WHERE?
Date: Wed, 6 Jan 1999 07:14:04 -0600
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="----=_NextPart_000_0020_01BE3944.246C76C0"
X-Priority: 3
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook Express 4.72.3155.0
X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3155.0
Sender: owner-metastock@xxxxxxxxxxxxx
Precedence: bulk
Reply-To: metastock@xxxxxxxxxxxxx
X-Loop-Detect: 1
X-UIDL: b44630ba85a7996c3e6871675a699a8c

<x-html><!DOCTYPE HTML PUBLIC "-//W3C//DTD W3 HTML//EN">
<HTML>
<HEAD>

<META content=text/html;charset=iso-8859-1 http-equiv=Content-Type><!DOCTYPE HTML PUBLIC "-//W3C//DTD W3 HTML//EN">
<META content='"MSHTML 4.72.3110.7"' name=GENERATOR>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT size=2>Hello Chris,</FONT></DIV>
<DIV><FONT size=2>The article starts on page 45 of the 1999 bonus issue...... by 
chance are you looking</FONT></DIV>
<DIV><FONT size=2>in the 1998 issue? I received my 98 issue about 2 or 3 weeks 
ago and received my</FONT></DIV>
<DIV><FONT size=2>99 issue last Saturday (1-2-99).</FONT></DIV>
<DIV><FONT color=#000000 size=2><BR>&nbsp; Best 
wishes,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Adam Hefner.<BR>&nbsp;<A 
href="mailto:VonHef@xxxxxxxxxx";>VonHef@xxxxxxxxxx</A></FONT></DIV>
<DIV><FONT color=#000000 size=2></FONT>&nbsp;</DIV>
<DIV><FONT color=#000000 
size=2>-------------------------------------</FONT></DIV>
<BLOCKQUOTE 
style="BORDER-LEFT: #000000 solid 2px; MARGIN-LEFT: 5px; PADDING-LEFT: 5px">
    <DIV><FONT face=Arial size=2><B>-----Original Message-----</B><BR><B>From: 
    </B>Christer Lindstedt &lt;<A 
    href="mailto:chris.linn@xxxxx";>chris.linn@xxxxx</A>&gt;<BR><B>To: </B><A 
    href="mailto:metastock@xxxxxxxxxxxxx";>metastock@xxxxxxxxxxxxx</A> &lt;<A 
    href="mailto:metastock@xxxxxxxxxxxxx";>metastock@xxxxxxxxxxxxx</A>&gt;<BR><B>Date: 
    </B>Wednesday, January 06, 1999 6:18 AM<BR><B>Subject: </B>SV: Dynamic 
    Multiple Time Frames - WHERE?<BR><BR></DIV></FONT>
    <DIV><FONT color=#000000>Hi Adam!</FONT></DIV>
    <DIV><FONT color=#000000></FONT>&nbsp;</DIV>
    <DIV>Don&acute;t judge me too hard but I cannot find the article in the 
    bonus issue.</DIV>
    <DIV>Can you direct me to the exact page?</DIV>
    <DIV>&nbsp;</DIV>
    <DIV>Chris Lindstedt</DIV>
    <BLOCKQUOTE 
    style="BORDER-LEFT: #000000 solid 2px; MARGIN-LEFT: 5px; PADDING-LEFT: 5px">
        <DIV><FONT face=Arial size=2><B>-----Ursprungligt 
        meddelande-----</B><BR><B>Fr&aring;n: </B>Adam Hefner &lt;<A 
        href="mailto:VonHef@xxxxxxxxxx";>VonHef@xxxxxxxxxx</A>&gt;<BR><B>Till: 
        </B>MetaStock &lt;<A 
        href="mailto:metastock@xxxxxxxxxxxxx";>metastock@xxxxxxxxxxxxx</A>&gt;<BR><B>Datum: 
        </B>den 5 januari 1999 05:51<BR><B>&Auml;mne: </B>Dynamic Multiple Time 
        Frames<BR><BR></DIV></FONT>In the 1999 Bonus Issue of TASC the article 
        by Robert Krausz named<BR>&quot;Dynamic Multiple Time Frames&quot;, he 
        describes a method of using<BR>different time frames to determine 
        trends. In the section he calls<BR>&quot;Fibonacci Trader&quot; he 
        reveals how to calculate different indicators<BR>he calls &quot;Balance 
        Points&quot; I have coded my interpretation of his indicators,<BR>please 
        examine.....and let me know if the logic is correct.<BR><BR>name: 
        FT-S&amp;R<BR>&nbsp; {Fibonacci Trader- Support &amp; 
        Resistance}<BR>&nbsp; {NOTE: under Color/Style options, 
        change<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; plot to last 
        &quot;style&quot; option}<BR><BR>{Weekly Price Range 
        Calculation}<BR>WRC:=If(DayOfWeek()&gt;=5,<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
        {then}HighestSince(1,DayOfWeek()=1,H)-<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
        LowestSince(1,DayOfWeek()=1,L),<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
        {else}0);<BR>WRP:=ValueWhen(1,WRC&gt;0,WRC);<BR>{Resistance 
        Range}<BR>RR1:= 
        FmlVar(&quot;FT-FBP&quot;,&quot;FBP&quot;)+(WRP*.5);<BR>RR2:= 
        FmlVar(&quot;FT-FBP&quot;,&quot;FBP&quot;)+(WRP*.618);<BR>{Support 
        Range}<BR>SR1:= 
        FmlVar(&quot;FT-FBP&quot;,&quot;FBP&quot;)-(WRP*.5);<BR>SR2:= 
        FmlVar(&quot;FT-FBP&quot;,&quot;FBP&quot;)-(WRP*.618);<BR>{Plot 
        Ranges}<BR>RR1;<BR>RR2;<BR>SR1;<BR>SR2;<BR><BR>name: FT-FBP<BR>&nbsp; 
        {Fibonacci Trader - Fixed Balance Point}<BR>&nbsp; {NOTE: under 
        Color/Style options, 
        change<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
        plot to last &quot;style&quot; option}<BR><BR>{Fixed Balance Point 
        Calculation}<BR>FBC:=If(DayOfWeek()=5,<BR>&nbsp;&nbsp;&nbsp; 
        {then}(HighestSince(1,DayOfWeek()=1,H)+<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
        LowestSince(1,DayOfWeek()=1,L)+<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
        CLOSE)/3,<BR>&nbsp;&nbsp;&nbsp; {else}0);<BR>{Fixed Balance Point 
        Plot}<BR>FBP:=ValueWhen(1,FBC&gt;0,FBC);<BR>FBP<BR><BR>name: 
        FT-DBP<BR>&nbsp; {Fibonacci Trader - Dynamic Balance Point}<BR>&nbsp; 
        {Dynamic Balance Point Calculation}<BR>dt:=DayOfWeek(); 
        <BR>DBC:=(HighestSince(5,DayOfWeek()=dt,H)+<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
        LowestSince(5,DayOfWeek()=dt,L)+CLOSE)/3;<BR>DBC;<BR><BR>name: 
        FT-FBPS<BR>&nbsp; {Fibonacci Trader-Fixed Balance Point 
        Step}<BR>FPS:=(ValueWhen(1,FmlVar(&quot;FT-FBP&quot;,&quot;FBC&quot;)&gt;0,<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
        FmlVar(&quot;FT-FBP&quot;,&quot;FBC&quot;)) 
        +<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
        ValueWhen(2,FmlVar(&quot;FT-FBP&quot;,&quot;FBC&quot;)&gt;0,<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
        FmlVar(&quot;FT-FBP&quot;,&quot;FBC&quot;)) 
        +<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
        ValueWhen(3,FmlVar(&quot;FT-FBP&quot;,&quot;FBC&quot;)&gt;0,<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
        FmlVar(&quot;FT-FBP&quot;,&quot;FBC&quot;)) 
        +<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
        ValueWhen(4,FmlVar(&quot;FT-FBP&quot;,&quot;FBC&quot;)&gt;0,<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
        FmlVar(&quot;FT-FBP&quot;,&quot;FBC&quot;)) 
        +<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
        ValueWhen(5,FmlVar(&quot;FT-FBP&quot;,&quot;FBC&quot;)&gt;0,<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
        FmlVar(&quot;FT-FBP&quot;,&quot;FBC&quot;)))/5;<BR>FPS<BR><BR>name: 
        FT-DBPS<BR>&nbsp; {Fibonacci Trader-Dynamic Balance Point 
        Step}<BR>DPS:=(ValueWhen(1,FmlVar(&quot;FT-DBP&quot;,&quot;DBC&quot;),<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
        FmlVar(&quot;FT-DBP&quot;,&quot;DBC&quot;))+<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
        ValueWhen(5,FmlVar(&quot;FT-DBP&quot;,&quot;DBC&quot;),<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
        FmlVar(&quot;FT-DBP&quot;,&quot;DBC&quot;))+<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
        ValueWhen(10,FmlVar(&quot;FT-DBP&quot;,&quot;DBC&quot;),<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
        FmlVar(&quot;FT-DBP&quot;,&quot;DBC&quot;))+<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
        ValueWhen(15,FmlVar(&quot;FT-DBP&quot;,&quot;DBC&quot;),<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
        FmlVar(&quot;FT-DBP&quot;,&quot;DBC&quot;))+<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
        ValueWhen(20,FmlVar(&quot;FT-DBP&quot;,&quot;DBC&quot;),<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
        FmlVar(&quot;FT-DBP&quot;,&quot;DBC&quot;)))/5;<BR>DPS;<BR><BR>&nbsp; 
        Best wishes,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Adam Hefner.<BR><A 
        href="mailto:VonHef@xxxxxxxxxx";>VonHef@xxxxxxxxxx</A><BR><BR>-------------------------------------<BR><BR></BLOCKQUOTE></BLOCKQUOTE></BODY></HTML>
</x-html>From ???@??? Wed Jan 06 07:32:20 1999
Received: from listserv.equis.com (204.246.137.2)
	by mail02.rapidsite.net (RS ver 1.0.2) with SMTP id 22070
	for <neal@xxxxxxxxxxxxx>; Wed,  6 Jan 1999 10:31:52 -0500 (EST)
Received: (from majordom@xxxxxxxxx)
	by listserv.equis.com (8.8.7/8.8.7) id HAA14409
	for metastock-outgoing; Wed, 6 Jan 1999 07:38:49 -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 HAA14406
	for <metastock@xxxxxxxxxxxxxxxxxx>; Wed, 6 Jan 1999 07:38:46 -0700
Received: from headend.cablenet-va.com (headend.cablenet-va.com [208.197.246.195])
	by freeze.metastock.com (8.8.5/8.8.5) with ESMTP id HAA15161
	for <metastock@xxxxxxxxxxxxx>; Wed, 6 Jan 1999 07:55:33 -0700 (MST)
Received: from bsaxon (rm-dialA-63.cablenet-va.com [208.209.30.63])
	by headend.cablenet-va.com (8.8.7/8.8.7) with SMTP id JAA29790
	for <metastock@xxxxxxxxxxxxx>; Wed, 6 Jan 1999 09:42:05 -0500 (EST)
Message-ID: <000d01be3983$42d7f1e0$3f1ed1d0@xxxxxxxxxxxxxxxxxxxxxx>
From: "Bill Saxon" <bsaxon@xxxxxxxxxxxxxxx>
To: "Metastock, EMail List" <metastock@xxxxxxxxxxxxx>
Subject: DL 6.52
Date: Wed, 6 Jan 1999 09:45:52 -0500
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="----=_NextPart_000_000A_01BE3959.590F4C80"
X-Priority: 3
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook Express 4.72.3155.0
X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3155.0
Sender: owner-metastock@xxxxxxxxxxxxx
Precedence: bulk
Reply-To: metastock@xxxxxxxxxxxxx
X-Loop-Detect: 1
X-UIDL: 46b643011f006e8b61d152dcda3b4520

<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.3612.1700"' name=GENERATOR>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT color=#000000 size=2>I get error message that the security is not 
there when I try to open Layouts or Templates that involve Comparative Relative 
Strength.&nbsp; Anyone else have this problem?&nbsp; It may not be the 
Patch.</FONT></DIV>
<DIV><FONT color=#000000 size=2></FONT><FONT color=#000000 
size=2></FONT>&nbsp;</DIV>
<DIV><FONT color=#000000 size=2>Regards,</FONT></DIV>
<DIV><FONT color=#000000 size=2></FONT>&nbsp;</DIV>
<DIV><FONT color=#000000 size=2>Bill Saxon<BR><A 
href="mailto:bsaxon@xxxxxxxxxxxxxxx";>bsaxon@xxxxxxxxxxxxxxx</A> 
</FONT></DIV></BODY></HTML>
</x-html>From ???@??? Wed Jan 06 08:59:27 1999
Received: from listserv.equis.com (204.246.137.2)
	by mail05.rapidsite.net (RS ver 1.0.2) with SMTP id 13459
	for <neal@xxxxxxxxxxxxx>; Wed,  6 Jan 1999 11:58:33 -0500 (EST)
Received: (from majordom@xxxxxxxxx)
	by listserv.equis.com (8.8.7/8.8.7) id IAA14754
	for metastock-outgoing; Wed, 6 Jan 1999 08:28:24 -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 IAA14751
	for <metastock@xxxxxxxxxxxxxxxxxx>; Wed, 6 Jan 1999 08:28:22 -0700
Received: from mqueue.raex.com (mqueue.raex.com [206.26.98.20])
	by freeze.metastock.com (8.8.5/8.8.5) with ESMTP id IAA15199
	for <metastock@xxxxxxxxxxxxx>; Wed, 6 Jan 1999 08:45:09 -0700 (MST)
Received: from als-office (cleveland57.raex.com [208.132.32.57])
	by mqueue.raex.com (8.8.7/8.8.7) with SMTP id KAA09082
	for <metastock@xxxxxxxxxxxxx>; Wed, 6 Jan 1999 10:31:59 -0500 (EST)
Message-ID: <001a01be3989$e9a72260$392084d0@xxxxxxxxxx>
From: "Alton Stephens" <astephen@xxxxxxxx>
To: <metastock@xxxxxxxxxxxxx>
Subject: Re: DL 6.52
Date: Wed, 6 Jan 1999 10:33:24 -0500
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="----=_NextPart_000_0013_01BE395F.FD72FB40"
X-Priority: 3
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook Express 4.72.2120.0
X-MimeOLE: Produced By Microsoft MimeOLE V4.72.2120.0
Sender: owner-metastock@xxxxxxxxxxxxx
Precedence: bulk
Reply-To: metastock@xxxxxxxxxxxxx
X-Loop-Detect: 1
X-UIDL: f487093552b2c50be1b34f7ec93bc223

<x-html><!DOCTYPE HTML PUBLIC "-//W3C//DTD W3 HTML//EN">
<HTML>
<HEAD>

<META content=text/html;charset=iso-8859-1 http-equiv=Content-Type><!DOCTYPE HTML PUBLIC "-//W3C//DTD W3 HTML//EN">
<META content='"MSHTML 4.72.3110.7"' name=GENERATOR>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT color=#000000 size=2>Folks, I have forgotten how to simply print a 
list of the issues in a data folder in Metastock- will someone please tell me 
how to do it?&nbsp; </FONT></DIV>
<DIV><FONT color=#000000 size=2></FONT>&nbsp;</DIV>
<DIV><FONT color=#000000 size=2></FONT>&nbsp;</DIV>
<DIV><FONT color=#000000 size=2>Alton Stephens<BR><A 
href="mailto:astephen@xxxxxxx";>astephen@xxxxxxx</A>m</FONT></DIV>
<BLOCKQUOTE 
style="BORDER-LEFT: #000000 solid 2px; MARGIN-LEFT: 5px; PADDING-LEFT: 5px">
    <DIV><FONT face=Arial size=2><B>-----Original Message-----</B><BR><B>From: 
    </B>Bill Saxon &lt;<A 
    href="mailto:bsaxon@xxxxxxxxxxxxxxx";>bsaxon@xxxxxxxxxxxxxxx</A>&gt;<BR><B>To: 
    </B>Metastock, EMail List &lt;<A 
    href="mailto:metastock@xxxxxxxxxxxxx";>metastock@xxxxxxxxxxxxx</A>&gt;<BR><B>Date: 
    </B>Wednesday, January 06, 1999 10:21 AM<BR><B>Subject: </B>DL 
    6.52<BR><BR></DIV></FONT>
    <DIV><FONT color=#000000 size=2>I get error message that the security is not 
    there when I try to open Layouts or Templates that involve Comparative 
    Relative Strength.&nbsp; Anyone else have this problem?&nbsp; It may not be 
    the Patch.</FONT></DIV>
    <DIV><FONT color=#000000 size=2></FONT><FONT color=#000000 
    size=2></FONT>&nbsp;</DIV>
    <DIV><FONT color=#000000 size=2>Regards,</FONT></DIV>
    <DIV><FONT color=#000000 size=2></FONT>&nbsp;</DIV>
    <DIV><FONT color=#000000 size=2>Bill Saxon<BR><A 
    href="mailto:bsaxon@xxxxxxxxxxxxxxx";>bsaxon@xxxxxxxxxxxxxxx</A> 
</FONT></DIV></BLOCKQUOTE></BODY></HTML>
</x-html>From ???@??? Wed Jan 06 09:06:02 1999
Received: from listserv.equis.com (204.246.137.2)
	by mail02.rapidsite.net (RS ver 1.0.2) with SMTP id 19817
	for <neal@xxxxxxxxxxxxx>; Wed,  6 Jan 1999 12:02:09 -0500 (EST)
Received: (from majordom@xxxxxxxxx)
	by listserv.equis.com (8.8.7/8.8.7) id JAA15027
	for metastock-outgoing; Wed, 6 Jan 1999 09:06:44 -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 JAA15024
	for <metastock@xxxxxxxxxxxxxxxxxx>; Wed, 6 Jan 1999 09:06:42 -0700
Received: from vesuve.globetrotter.net (vesuve.globetrotter.net [142.169.1.81])
	by freeze.metastock.com (8.8.5/8.8.5) with ESMTP id JAA15224
	for <metastock@xxxxxxxxxxxxx>; Wed, 6 Jan 1999 09:23:30 -0700 (MST)
Received: from fernand (ts1-08.f3209.quebectel.com [142.169.171.18])
	by vesuve.globetrotter.net (8.8.5/8.8.5) with SMTP id LAA03947
	for <metastock@xxxxxxxxxxxxx>; Wed, 6 Jan 1999 11:12:29 -0500 (EST)
Message-ID: <36938AD7.3B00@xxxxxxxxxxxx>
Date: Wed, 06 Jan 1999 11:09:59 -0500
From: Fernand Levesque <techpack@xxxxxxxxxxxx>
X-Mailer: Mozilla 3.01 (Win95; U)
MIME-Version: 1.0
To: metastock@xxxxxxxxxxxxx
Subject: Re: Metastock eod 6.52 upgrade
References: <3.0.1.32.19990106112829.0096a100@xxxxxxxxxxxxxxxx>
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: f4e66bfdf153711c205ed01d7baac869

Lars Andersson wrote:
> 
> Will you please send it to me too.
> Lars Andersson
> 
> At 16:58 05-01-1999 -0700, you wrote:
> >We found a problem in The DownLoader 6.52 convert function when the
> >source file is large.  We are testing a fix for that right now.  If it
> >passes my test, I'll send it to those that need it immediately for you
> >to try.  It only applies to conversions.
> >
> >Equis Support
> >http://www.equis.com/
> >http://www.equis.com/customer/support/
> >Please include previous email answers and questions in your response.
> >
> >Equis and MetaStock and MetaStock Professional are registered trademarks
> >of Equis International.  Achelis Binary Wave, The DownLoader, Expert
> >Advisor, OptionScope, Quotecenter, and Smart Charts are trademarks of
> >Equis International.
> >
> >
> >
> >-----Original Message-----
> >From: A.J. Maas [mailto:anthmaas@xxxxxx]
> >Sent: Tuesday, January 05, 1999 5:02 PM
> >To: metastock@xxxxxxxxxxxxx
> >Subject: Re: Metastock eod 6.52 upgrade
> >
> >
> >Jim, Ian +All
> >
> >The Downloader was reading+writing to the hard disk before the Patch
> >as well. Even to the 4x wave character (" ~ ") in the name marked files.
> >
> >One of the new files is the convert log file " Conrept.dta ", but
> >reading this
> >file is not so easy because of the " .dta " being choosen as the file
> >type.
> >Also I asume this is also so choosen as the file is to be part of the
> >Downloaders' system file-set.
> >So be carefull in usage when accidently Editing the file. For safety
> >reasons
> >a viewer might be better to be used, but surely never let any program
> >overwrite the file, apart from the Equis program.
> >
> >The Downloader is indeed one of the slowest updating-programs around,
> >but
> >also here are some tips on using to Convert with the Downloader
> >'smoothly'
> >and to be added to the List's DL-Tips List :
> >
> >In DL
> >-Do NOT EVER keep more then 100 - 200 securities stored in one(1) folder
> >-'Always' apply Traverse Folders option in Convert Dialog's
> >Option|Destination TAB
> >-Keep clean folders by running the Test Tool once in a while
> >-Test data files regularly for main errors using the Test Tool
> >-Update daily/regularly
> >-Do historical or refreshing sessions at times when you can be away from
> >the computer
> >-Always delete any of the above (" ~ ") wave character marked files
> >-Use ASCI-TXT for daily data and Excel4.0 sheets for historical data
> >
> >In Win95/98/NT:
> >-Do not have screensavers running while converting
> >-Use the Downloader from a fresh clean Win95 boot start
> >-Run Scandisk and Defrag programs frequent on a regurelarly basis
> >   -Automate any of your daily conversion jobs
> >
> >Regards,
> >Ton Maas
> >ms-irb@xxxxxx
> >
> >
> >----- Original Message -----
> >From: Jim Michael <genepool@xxxxxxxxxx>
> >To: <metastock@xxxxxxxxxxxxx>
> >Sent: dinsdag 5 januari 1999 23:08
> >Subject: Re: Metastock eod 6.52 upgrade
> >
> >
> >>
> >>
> >>On Tue, 5 Jan 1999, George Ashton wrote:
> >>
> >>> Thanks Jim, I'll try that though I did NOT have a problem prior to
> >>> installing the 6.52 upgrade. I did note that someone on this list
> >reckoned
> >>> that the Downloader was now opening and closing the ?master file for
> >each
> >>> and every security instead of opening the file, doing the job, then
> >closing
> >>> it. I'd go along with that when I watch my hard drive light thrashing
> >around.
> >>
> >>
> >>Yes, Ian sent me a copy of his original post to that effect. He said he
> >
> >>reverted back to 6.5 pending a fix to 6.52.
> >>
> >>Cheers,
> >>
> >>Jim
> >>
> >
Did anyone try this fix yet. Is it working, if yes would appreciate
receiving a copy. I am running dead slow???? back to the 8088