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

Re: [amibroker] Winning Systems



PureBytes Links

Trading Reference Links

Here's the afl
T = 30;

Title = "301-6 " + Name () + " " 

+ "CCI" + " " + "periods:" + WriteVal(T,Format = 1)+ " " 

+ "RSI (9): "+ WriteVal(RSI(9),FORMAT=1.2); 

MaxGraph = 5;

Graph2 = CCI (T);

Uptrend = 100; Downtrend = -100; 

Graph2BarColor = IIf (Graph2 > uptrend, 5, 

IIf (Graph2 < downtrend,4,1));

Graph4 = Graph2;

Graph4BarColor = IIf (Graph4 > uptrend, 5, 

IIf (Graph4 < downtrend,4,1));

Graph2Style = 4+2;


----- Original Message ----- 
From: David Holzgrefe 
To: amibroker@xxxxxxxxxxxxxxx 
Sent: Thursday, October 04, 2001 4:35 AM
Subject: Re: [amibroker] Winning Systems


Hi Tom S

do you have a afl to suit the indicator 301-6 ?

attached is a Report from the afl by Tom Mc
It produced similar results on the ASX 200 over several different time
periods

Regards David
----- Original Message -----
From: "Tom Supera" <tom_supera@xxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Thursday, October 04, 2001 7:17 AM
Subject: Re: [amibroker] Winning Systems


> Hi Tom,
>
> I wonder, why the most people searching for trend-indicators. I think, you
> become better signals with cci.
> See the two files i've added.
>
> Let me hear, what you think about it
>
> Tom Supera
>
>
> ----- Original Message -----
> From: "Tom McDaniel" <tmtempe@xxxx>
> To: <amibroker@xxxxxxxxxxxxxxx>
> Sent: Wednesday, October 03, 2001 2:41 AM
> Subject: Re: [amibroker] Winning Systems
>
>
> > Bryan-
> >
> > Here is an interesting system. I gravitate toward the simplicity and
> > underlying concept of the system.
> >
> > I think I have coded it accurately from an article in the most recent
> > issue of Technical Analysis of Stocks and Commodities. No guarantees.
> > The author seems to gravitate toward commodities rather than stocks and
> > shows no stock related results.
> >
> > Backtesting on my stock list shows a modest profit. Examining the graphs
> > by eye (Indicator Builder) shows that there is a significant lag in the
> > system (particularly on position entry). So, smart people should be
> > able to improve on it.
> >
> > I would be interested in hearing your and other's thoughts and the
> > results of any experimenting.
> >
> > Best regards,
> > -Tom McDaniel
> >
> >
> >
> >
> >
> > Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
> >
> >
>
>
> --------------------------------------------------------------------------
--
> ----
>
>
> > /* Trend Detection Index */
> > /* Developed by M.H. Pee */
> > /* From Technical Analysis of Stocks and Commodities, October, 1991 p.
54
> */
> > /* Coded by T.L. McDaniel September, 1991 */
> >
> >
> > MaxGraphs = 2;
> > Period = 20;
> >
> > TDM = ( Close - Ref (Close, -Period));
> > ATDM = ABS (TDM);
> > PTDI = SUM (TDM, Period);
> > ATDI = ABS (PTDI);
> > FDAM = SUM (ATDM, 40);
> > SATDM = SUM( ATDM, 20);
> > TDI = (ATDI + SATDM) - FDAM;
> >
> > Graph0 = TDI;
> > Graph1 = PTDI;
> >
> > Buy = iif (PTDI > 0 AND TDI >0, 1, 0);
> > /* Sell = Cross (0, PTDI); */
> > Short = iif (PTDI < 0 AND TDI >0, 1, 0);
> > Sell = Short;
> > /* Cover = Cross (PTDI, 0); */
> > Cover = Buy;
> >
> > Buy = ExRem (Buy, Sell);
> > Sell = ExRem (Sell, Buy);
> > Short = ExRem (Short, Cover);
> > Cover = ExRem (Cover, Short);
> >
>
>
>
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>
>


   

Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/ 



------=_NextPart_001_0012_01C14CBB.2E2D4A80
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.2600.0" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2>Hi David</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>Here's the afl</FONT></DIV>
<DIV><FONT face=Arial size=2><FONT size=2>
<P>T = </FONT><FONT color=#ff00ff size=2>30</FONT><FONT size=2>;</FONT></P>
<P><FONT size=2><B>Title</B> = </FONT><FONT color=#ff00ff size=2>"301-6 
"</FONT><FONT size=2> + </FONT><FONT color=#0000ff size=2>Name</FONT><FONT 
size=2> () + </FONT><FONT color=#ff00ff size=2>" "</FONT><FONT size=2> </P>
<P>+ </FONT><FONT color=#ff00ff size=2>"CCI"</FONT><FONT size=2> + </FONT><FONT 
color=#ff00ff size=2>" "</FONT><FONT size=2> + </FONT><FONT color=#ff00ff 
size=2>"periods:"</FONT><FONT size=2> + </FONT><FONT color=#0000ff 
size=2>WriteVal</FONT><FONT size=2>(T,Format = </FONT><FONT color=#ff00ff 
size=2>1</FONT><FONT size=2>)+ </FONT><FONT color=#ff00ff size=2>" "</FONT><FONT 
size=2> </P>
<P>+ </FONT><FONT color=#ff00ff size=2>"RSI (9): "</FONT><FONT size=2>+ 
</FONT><FONT color=#0000ff size=2>WriteVal</FONT><FONT size=2>(</FONT><FONT 
color=#0000ff size=2>RSI</FONT><FONT size=2>(</FONT><FONT color=#ff00ff 
size=2>9</FONT><FONT size=2>),FORMAT=</FONT><FONT color=#ff00ff 
size=2>1.2</FONT><FONT size=2>); </P><B>
<P>MaxGraph</B> = </FONT><FONT color=#ff00ff size=2>5</FONT><FONT 
size=2>;</P><B>
<P>Graph2</B> = </FONT><FONT color=#0000ff size=2>CCI</FONT><FONT size=2> 
(T);</P>
<P>Uptrend = </FONT><FONT color=#ff00ff size=2>100</FONT><FONT size=2>; 
Downtrend = -</FONT><FONT color=#ff00ff size=2>100</FONT><FONT size=2>; </P><B>
<P>Graph2BarColor</B> = </FONT><FONT color=#0000ff size=2>IIf</FONT><FONT 
size=2> (<B>Graph2</B> &gt; uptrend, </FONT><FONT color=#ff00ff 
size=2>5</FONT><FONT size=2>, </P>
<P></FONT><FONT color=#0000ff size=2>IIf</FONT><FONT size=2> (<B>Graph2</B> &lt; 
downtrend,</FONT><FONT color=#ff00ff size=2>4</FONT><FONT size=2>,</FONT><FONT 
color=#ff00ff size=2>1</FONT><FONT size=2>));</P><B>
<P>Graph4</B> = <B>Graph2</B>;</P><B>
<P>Graph4BarColor</B> = </FONT><FONT color=#0000ff size=2>IIf</FONT><FONT 
size=2> (<B>Graph4</B> &gt; uptrend, </FONT><FONT color=#ff00ff 
size=2>5</FONT><FONT size=2>, </P>
<P></FONT><FONT color=#0000ff size=2>IIf</FONT><FONT size=2> (<B>Graph4</B> &lt; 
downtrend,</FONT><FONT color=#ff00ff size=2>4</FONT><FONT size=2>,</FONT><FONT 
color=#ff00ff size=2>1</FONT><FONT size=2>));</P><B>
<P>Graph2Style</B> = </FONT><FONT color=#ff00ff size=2>4</FONT><FONT 
size=2>+</FONT><FONT color=#ff00ff size=2>2</FONT><FONT 
size=2>;</P></FONT></FONT></DIV>
<DIV>&nbsp;</DIV>
<BLOCKQUOTE 
style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
<DIV style="FONT: 10pt arial">----- Original Message ----- </DIV>
<DIV 
style="BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: black"><B>From:</B> 
<A title=dtholz@xxxx href="mailto:dtholz@xxxx";>David 
Holzgrefe</A> </DIV>
<DIV style="FONT: 10pt arial"><B>To:</B> <A title=amibroker@xxxxxxxxxx 
href="mailto:amibroker@xxxxxxxxxxxxxxx";>amibroker@xxxxxxxxxxxxxxx</A> </DIV>
<DIV style="FONT: 10pt arial"><B>Sent:</B> Thursday, October 04, 2001 4:35 
AM</DIV>
<DIV style="FONT: 10pt arial"><B>Subject:</B> Re: [amibroker] Winning 
Systems</DIV>
<DIV><BR></DIV>Hi Tom S<BR><BR>do you have a afl to suit the indicator 301-6 
?<BR><BR>attached is a Report from the afl by Tom Mc<BR>It produced similar 
results on the ASX 200 over several different time<BR>periods<BR><BR>Regards 
David<BR>----- Original Message -----<BR>From: "Tom Supera" &lt;<A 
href="mailto:tom_supera@xxxx";>tom_supera@xxxx</A>&gt;<BR>To: &lt;<A 
href="mailto:amibroker@xxxxxxxxxxxxxxx";>amibroker@xxxxxxxxxxxxxxx</A>&gt;<BR>Sent: 
Thursday, October 04, 2001 7:17 AM<BR>Subject: Re: [amibroker] Winning 
Systems<BR><BR><BR>&gt; Hi Tom,<BR>&gt;<BR>&gt; I wonder, why the most people 
searching for trend-indicators. I think, you<BR>&gt; become better signals 
with cci.<BR>&gt; See the two files i've added.<BR>&gt;<BR>&gt; Let me hear, 
what you think about it<BR>&gt;<BR>&gt; Tom Supera<BR>&gt;<BR>&gt;<BR>&gt; 
----- Original Message -----<BR>&gt; From: "Tom McDaniel" 
&lt;tmtempe@xxxx&gt;<BR>&gt; To: 
&lt;amibroker@xxxxxxxxxxxxxxx&gt;<BR>&gt; Sent: Wednesday, October 03, 2001 
2:41 AM<BR>&gt; Subject: Re: [amibroker] Winning 
Systems<BR>&gt;<BR>&gt;<BR>&gt; &gt; Bryan-<BR>&gt; &gt;<BR>&gt; &gt; Here is 
an interesting system.&nbsp; I gravitate toward the simplicity and<BR>&gt; 
&gt; underlying concept of the system.<BR>&gt; &gt;<BR>&gt; &gt; I think I 
have coded it accurately from an article in the most recent<BR>&gt; &gt; issue 
of Technical Analysis of Stocks and Commodities.&nbsp; No guarantees.<BR>&gt; 
&gt; The author seems to gravitate toward commodities rather than stocks 
and<BR>&gt; &gt; shows no stock related results.<BR>&gt; &gt;<BR>&gt; &gt; 
Backtesting on my stock list shows a modest profit. Examining the 
graphs<BR>&gt; &gt; by eye (Indicator Builder) shows that there is a 
significant lag in the<BR>&gt; &gt; system (particularly on position 
entry).&nbsp; So, smart people should be<BR>&gt; &gt; able to improve on 
it.<BR>&gt; &gt;<BR>&gt; &gt; I would be interested in hearing your and 
other's thoughts and the<BR>&gt; &gt; results of any experimenting.<BR>&gt; 
&gt;<BR>&gt; &gt; Best regards,<BR>&gt; &gt; -Tom McDaniel<BR>&gt; 
&gt;<BR>&gt; &gt;<BR>&gt; &gt;<BR>&gt; &gt;<BR>&gt; &gt;<BR>&gt; &gt; Your use 
of Yahoo! Groups is subject to<BR>http://docs.yahoo.com/info/terms/<BR>&gt; 
&gt;<BR>&gt; &gt;<BR>&gt;<BR>&gt;<BR>&gt; 
--------------------------------------------------------------------------<BR>--<BR>&gt; 
----<BR>&gt;<BR>&gt;<BR>&gt; &gt; /* Trend Detection Index */<BR>&gt; &gt; /* 
Developed by M.H. Pee */<BR>&gt; &gt; /* From Technical Analysis of Stocks and 
Commodities, October, 1991 p.<BR>54<BR>&gt; */<BR>&gt; &gt; /* Coded by T.L. 
McDaniel September, 1991 */<BR>&gt; &gt;<BR>&gt; &gt;<BR>&gt; &gt; MaxGraphs = 
2;<BR>&gt; &gt; Period = 20;<BR>&gt; &gt;<BR>&gt; &gt; TDM = ( Close - Ref 
(Close, -Period));<BR>&gt; &gt; ATDM = ABS (TDM);<BR>&gt; &gt; PTDI =SUM 
(TDM, Period);<BR>&gt; &gt; ATDI = ABS (PTDI);<BR>&gt; &gt; FDAM = SUM (ATDM, 
40);<BR>&gt; &gt; SATDM = SUM( ATDM, 20);<BR>&gt; &gt; TDI = (ATDI + SATDM) - 
FDAM;<BR>&gt; &gt;<BR>&gt; &gt; Graph0 = TDI;<BR>&gt; &gt; Graph1 = 
PTDI;<BR>&gt; &gt;<BR>&gt; &gt; Buy = iif (PTDI &gt; 0 AND TDI &gt;0, 1, 
0);<BR>&gt; &gt; /* Sell = Cross (0, PTDI); */<BR>&gt; &gt; Short = iif (PTDI 
&lt; 0 AND TDI &gt;0, 1, 0);<BR>&gt; &gt; Sell = Short;<BR>&gt; &gt; /*Cover 
= Cross (PTDI, 0); */<BR>&gt; &gt; Cover = Buy;<BR>&gt; &gt;<BR>&gt; &gt; Buy 
= ExRem (Buy, Sell);<BR>&gt; &gt; Sell = ExRem (Sell, Buy);<BR>&gt; &gt; Short 
= ExRem (Short, Cover);<BR>&gt; &gt; Cover = ExRem (Cover, Short);<BR>&gt; 
&gt;<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt; Your use of Yahoo! Groups is 
subject to 
http://docs.yahoo.com/info/terms/<BR>&gt;<BR>&gt;<BR><BR>------------------------ 
Yahoo! Groups Sponsor ---------------------~--&gt;<BR>Pinpoint the right 
security solution for your company- Learn how to add 128- bit encryption and 
to authenticate your web site with VeriSign's FREE 
guide!<BR>http://us.click.yahoo.com/yQix2C/33_CAA/yigFAA/dkFolB/TM<BR>---------------------------------------------------------------------~-&gt;<BR><BR>&nbsp;<BR><BR>Your 
use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/ 
<BR><BR></BLOCKQUOTE></BODY></HTML>

------=_NextPart_001_0012_01C14CBB.2E2D4A80--

Attachment:

Attachment: Description: "Description: Binary data"