PureBytes Links
Trading Reference Links
|
<x-html><HTML>
<BODY BGCOLOR="#FFFFFF">
Steve Duval wrote:
<BLOCKQUOTE TYPE=CITE> <FONT SIZE=-1>Does anyone have, or know where
to obtain, a system (ELA for SuperCharts 4.0) that can be applied to the
VIX to trade the S&P500. I am not looking to trade intraday, just on
a daily basis. Thanks for your reply.</FONT> <FONT SIZE=-1>Steve</FONT></BLOCKQUOTE>
<BR>
<P>input:len1(21),len2(15),avg1(12),avg2(3);
<BR>vars:vix(0),hvol(0),btest(false);
<BR>vix=Average(c of data2,avg1);
<BR>hvol=Average(((stddev(c,len1)*len2)/c)*100,avg2);
<BR>btest=hvol>hvol[1]and vix<vix[1];
<BR>
<P>if hvol crosses above vix then buy market;
<BR>if hvol<hvol[1]and hvol[1]>hvol[2]then begin exitlong;
<BR>btest=false;end;
<P>--
<BR> TC
<BR>
</BODY>
</HTML>
</x-html>From ???@??? Sat Jun 20 07:04:52 1998
X-POP3-Rcpt: neal@xxxxxxxxx
Return-Path: <owner-realtraders@xxxxxxxxxxxxxx>
Received: from accessone.com (list.listserver.com [198.68.191.15])
by purebytes.com (8.8.4/8.8.4) with ESMTP
id RAA21492 for <neal@xxxxxxxxxxxxx>; Fri, 19 Jun 1998 17:08:31 -0700
Received: from localhost (localhost [127.0.0.1])
by accessone.com (8.8.5/8.8.5/PIH) with SMTP id RAA00757;
Fri, 19 Jun 1998 17:50:03 -0700 (PDT)
Received: from imo30.mx.aol.com (imo30.mx.aol.com [198.81.17.74])
by accessone.com (8.8.5/8.8.5/PIH) with ESMTP id RAA00543
for <realtraders@xxxxxxxxxxxxxx>; Fri, 19 Jun 1998 17:46:49 -0700 (PDT)
Received: from KCSpread@xxxxxxx
by imo30.mx.aol.com (IMOv14_b1.1) id APJPa26166
for <realtraders@xxxxxxxxxxxxxx>; Fri, 19 Jun 1998 20:45:51 +2000 (EDT)
Message-Id: <a6d6a677.358b0640@xxxxxxx>
Date: Fri, 19 Jun 1998 20:45:51 EDT
Reply-To: KCSpread@xxxxxxx
Sender: owner-realtraders@xxxxxxxxxxxxxx
From: KCSpread@xxxxxxx
To: RealTraders Discussion Group <realtraders@xxxxxxxxxxxxxx>
Subject: Re: VIX Trading System
Mime-Version: 1.0
Content-type: multipart/mixed;
boundary="part0_898303551_boundary"
X-Mailer: AOL 3.0 for Windows 95 sub 76
X-Listprocessor-Version: 8.1 -- ListProcessor(tm) by CREN
For the person who wanted an .ela file.
> Does anyone have, or know where to obtain, a system (ELA for SuperCharts
4.0) that can be applied
> to the VIX to trade the S&P500. I am not looking to trade intraday, just on
a daily basis. Thanks
> for your reply. Steve
input:len1(21),len2(15),avg1(12),avg2(3);
vars:vix(0),hvol(0),btest(false);
vix=Average(c of data2,avg1);
hvol=Average(((stddev(c,len1)*len2)/c)*100,avg2);
btest=hvol>hvol[1]and vix<vix[1];
if hvol crosses above vix then buy market;
if hvol<hvol[1]and hvol[1]>hvol[2]then begin exitlong;
btest=false;end;
--
TC
--------------------
Steve Duval wrote:
<BLOCKQUOTE TYPE=CITE> Does anyone have, or know where
to obtain, a system (ELA for SuperCharts 4.0) that can be applied to the
VIX to trade the S&P500. I am not looking to trade intraday, just on
a daily basis. Thanks for your reply. Steve</BLOCKQUOTE>
input:len1(21),len2(15),avg1(12),avg2(3);
vars:vix(0),hvol(0),btest(false);
vix=Average(c of data2,avg1);
hvol=Average(((stddev(c,len1)*len2)/c)*100,avg2);
btest=hvol>hvol[1]and vix<vix[1];
if hvol crosses above vix then buy market;
if hvol<hvol[1]and hvol[1]>hvol[2]then begin exitlong;
btest=false;end; >>
Attachment Converted: "c:\eudora\attach\VIX.ELA"
|