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

Please Remove Me



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 size=2>realtraders,,,, </FONT></DIV>
<DIV><FONT color=#000000 size=2></FONT>&nbsp;</DIV>
<DIV><FONT color=#000000 size=2>Guess I didn't understand when I signed 
up...&nbsp; I thought there was a forum hidden in RealTraders 
somewhere..</FONT></DIV>
<DIV><FONT color=#000000 size=2></FONT>&nbsp;</DIV>
<DIV><FONT color=#000000 size=2>I don't want all the emails...&nbsp;&nbsp; Too 
busy making a fortune in commodities.&nbsp; Please remove me....</FONT></DIV>
<DIV><FONT color=#000000 size=2></FONT>&nbsp;</DIV>
<DIV><FONT color=#000000 size=2>Thank You, </FONT></DIV>
<DIV><FONT color=#000000 size=2>Mike Haight</FONT></DIV>
<DIV><FONT color=#000000 size=2><A 
href="mailto:MHaight@xxxxxxxxxx";>MHaight@xxxxxxxxxx</A> 
</FONT></DIV></BODY></HTML>
</x-html>From ???@??? Mon Aug 03 19:17:15 1998
Received: from list.listserver.com (198.68.191.15)
	by mail05.rapidsite.net (RS ver 0.3) with SMTP id 20491
	for <neal@xxxxxxxxxxxxx>; Mon,  3 Aug 1998 22:17:24 -0400 (EDT)
Received: from localhost (localhost [127.0.0.1])
	by accessone.com (8.8.5/8.8.5/PIH) with SMTP id TAA20896;
	Mon, 3 Aug 1998 19:17:03 -0700 (PDT)
Received: from iglou.com (sendmail@xxxxxxxxxxxxxxxx [192.107.41.17])
	by accessone.com (8.8.5/8.8.5/PIH) with ESMTP id TAA20388
	for <realtraders@xxxxxxxxxxxxxx>; Mon, 3 Aug 1998 19:12:47 -0700 (PDT)
Received: from [204.255.239.40] (helo=default) 
	by iglou.com with smtp (8.9.1/8.9.1)
	id 0z3Wag-0001VU-00; Mon, 3 Aug 1998 22:12:43 -0400
Message-Id: <902196757-0-rjbiiilis@xxxxxxxxxxxxx>
Date: Mon, 03 Aug 1998 22:12:37 -0400
Reply-To: rjbiiilis@xxxxxxxxxxxxx
Sender: owner-realtraders@xxxxxxxxxxxxxx
From: "Sentinel Trading" <rjbiiilis@xxxxxxxxxxxxx>
To: RealTraders Discussion Group <realtraders@xxxxxxxxxxxxxx>
Subject: el question day of week statement
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Id: <902196757-1-rjbiiilis@xxxxxxxxxxxxx>
Content-Transfer-Encoding: 8bit
X-To: "RealTraders Discussion Group" <realtraders@xxxxxxxxxxxxxx>
X-Mailer: IBM Internet Messaging Framework
X-MIME-Engine: v0.58
X-Listprocessor-Version: 8.1 -- ListProcessor(tm) by CREN
X-Loop-Detect: 1

I added the following statement to a system while trying to include the weekly
avg for daily data into a system to insure a trend in two time frames, It
increased the number of trades and greatly improved the returns on the SP 500
daily. The statement IF DAYOFWEEK(DATE) < DAYOFWEEK(DATE[1]) THEN BEGIN when
removed decreases returns with several stopped trades. Any insight would be
appreciated. I'm posting the whole system not the returns, I'd be interested in
knowing anyone else tries backtesting it. If anyone requests I'll send the ELA.
Thanks for any insight.
{*******************************************************************************
*****************************}
{ I used Max Bars Back Defaulted at 50}



   input: stoploss(.0625),BuyZone(40),SellZone(60), LENGTH(5);

 ARRAY:HARRAY[200](0),LARRAY[200](0);
 
 IF DAYOFWEEK(DATE) < DAYOFWEEK(DATE[1]) THEN BEGIN

     VALUE4 = 0; VALUE5 = 0;

     HARRAY[LENGTH + 1] = VALUE1;
     LARRAY[LENGTH + 1] = VALUE2;

     FOR VALUE0 = 1 TO LENGTH BEGIN

          HARRAY[VALUE0] = HARRAY[VALUE0 + 1];
          LARRAY[VALUE0] = LARRAY[VALUE0 + 1];
          VALUE4 = VALUE4 + HARRAY[VALUE0];
          VALUE5 = VALUE5 + LARRAY[VALUE0];
      
     END;
                     
     VALUE1 = H;
     VALUE2 = L;
     VALUE3 = 0;
     VALUE6 = ROUND(VALUE4 / LENGTH,2);
     VALUE7 = ROUND(VALUE5 / LENGTH,2);


 IF H > VALUE1 THEN VALUE1 = H;
 IF L < VALUE2 THEN VALUE2 = L;
 
 end;
 If currentbar > 1 and  DMIPlus(14) > DMIMinus(14) and ADX(14) > 35 and
  FastK(8) <= BuyZone and value6 > value6[1] 
 then begin Buy ("Long") High + .0625 stop;
 end;
   
  ExitLong ("StopLoss") from entry ("Long") At$ Low - stoploss  stop;

   if FastK(8) crosses below 80 then exitlong;

{******************************************************************}

 If CurrentBar >1 and  ADX(14) > 35 and DMIMinus(14) > DMIPlus(14) and
  FastK(8) >= SellZone and value7 < value7[1] 
   
      Then begin Sell ("Short") Low - .0625 stop;
 end;

 ExitShort ("StopLossShort") from entry ("Short") At$ High + stoploss stop;
 
 
     If FastK(8) crosses above 20 then exitshort;




  

"The darkest hour in any man's life is when he sits down to plan
 how to get money without earning it"

Sentinel Trading