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.3509.100"' name=GENERATOR>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT color=#000000 size=2>Bill,</FONT></DIV>
<DIV><FONT color=#000000 size=2></FONT><FONT size=2> The
upgrade program will search for Win95. If it doesn't find Win95, it will
ask to insert Win95 disk 1 or CD for proof. If he has them, he is
OK.</FONT></DIV>
<DIV><FONT size=2></FONT> </DIV>
<DIV><FONT size=2>Jim</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 <<A
href="mailto:bsaxon@xxxxxxxxxxxxxxx">bsaxon@xxxxxxxxxxxxxxx</A>><BR><B>To:
</B>EMail Fasttrack <<A
href="mailto:fasttrack@xxxxxxxxxxxxxx">fasttrack@xxxxxxxxxxxxxx</A>>;
EMail List Metastock <<A
href="mailto:metastock@xxxxxxxxxxxxx">metastock@xxxxxxxxxxxxx</A>><BR><B>Date:
</B>Sunday, September 27, 1998 3:28 PM<BR><B>Subject: </B>Win
98<BR><BR></DIV></FONT>A friend of mine's hard disk is some screwed up that
he wants to just<BR>reformat, load Win98 from scratch and reinstall his
programs. Can he<BR>do this with the Upgrade edition that is sold for
about $90? Thanks.<BR></BLOCKQUOTE></BODY></HTML>
</x-html>From ???@??? Sun Sep 27 23:08:53 1998
Received: from 204.246.137.2 (204.246.137.2)
by mail02.rapidsite.net (RS ver 0.3) with SMTP id 7971
for <neal@xxxxxxxxxxxxx>; Sun, 27 Sep 1998 17:35:13 -0400 (EDT)
Received: (from majordom@xxxxxxxxx)
by listserv.equis.com (8.8.7/8.8.7) id EAA05599
for metastock-outgoing; Mon, 28 Sep 1998 04:47:41 -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 EAA05596
for <metastock@xxxxxxxxxxxxxxxxxx>; Mon, 28 Sep 1998 04:47:38 -0600
Received: from salyko.cube.net (salyko.cube.net [195.38.152.2])
by freeze.metastock.com (8.8.5/8.8.5) with ESMTP id OAA20047
for <metastock@xxxxxxxxxxxxx>; Sun, 27 Sep 1998 14:51:17 -0600 (MDT)
Received: from dialppp09.cubenet.de(really [194.97.90.9]) by salyko.cube.net
via smtpd with smtp
id <m0zNNgf-000JTxC@xxxxxxxxxxxxxxx>
for <metastock@xxxxxxxxxxxxx>; Sun, 27 Sep 1998 22:44:57 +0200 (MEST)
(Smail-3.2.0.94 1997-Apr-22 #1 built 1998-Jul-3)
Received: by dialppp09.cubenet.de with Microsoft Mail
id <01BDEA67.C5A07400@xxxxxxxxxxxxxxxxxxxx>; Sun, 27 Sep 1998 22:40:05 +0200
Message-ID: <01BDEA67.C5A07400@xxxxxxxxxxxxxxxxxxxx>
From: Gerhard Frischholz <Gerhard.Frischholz@xxxxxxxx>
To: "'metastock@xxxxxxxxxxxxx'" <metastock@xxxxxxxxxxxxx>
Subject: AW: can metastock do flip flops?
Date: Sun, 27 Sep 1998 22:39:21 +0200
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="---- =_NextPart_000_01BDEA67.C5A81520"
Sender: owner-metastock@xxxxxxxxxxxxx
Precedence: bulk
Reply-To: metastock@xxxxxxxxxxxxx
X-Loop-Detect: 1
For sure it does !
In fact, being an electrical engineer I required the same function some time ago. You can use the flip-flop function whenever you need to have some event stored. A former buy signal, an alert signal or any other meaningful precondition - to base additional studies on.
Here is an example of the flip-flop function that I have worked out:
Set:=Cross(Mov(C,3,S),Mov(C,5,S)); {Buy Signal}
Reset:=Cross(Mov(C,5,S),Mov(C,3,S)); {Sell Signal}
FlipFlop:=If((Set OR ((Reset OR PREV)=false))=false,true,false); {Flip-Flop Function}
If(FlipFlop=true,false,true) {This statement just inverts the signal - if required}
Set and reset can be any indicator result you are interested in. The flip-flop function requires access to a previous value - provided by MetaStock through the PREV function. So just replace the Set and Reset statement by the function you need and calculate FlipFlop. Note that the result is inverted meaning that it returns 0 if the (set-) condition is true and 1 if the (reset-) condition is true.
Hope this can help in any way !
Gerhard
Attachment Converted: "c:\eudora\attach\AW can metastock do flip flops"
|