PureBytes Links
Trading Reference Links
|
Larry,
Here is something I quickly drew up.
W_C = TimeFrameCompress(Close, inWeekly);
weeklyma = MA( W_C, 10 );// 10 weeks
weeklyema = EMA( W_C, 30); // 30 weeks
Filter = EMA(V, 60) > 150000 AND// a change may be required for low-volume
markets
L > Ref (L,-1) AND
Ref (L,-1) > Ref (L,-2)AND
MA(C,10) < EMA(C,30)AND
C > MA(C,10)AND
C < EMA(C,30)AND
weeklyma < weeklyema AND
ADX(10) > 20.0 AND
Close >= .10000;//change if you trade junk (I do)
Cond1 = L > Ref (L,-1) AND Ref (L,-1) > Ref (L,-2) AND MA(C,10) < EMA(C,30)
AND C > MA(C,10) AND
C < EMA(C,30) AND weeklyma < weeklyema AND ADX(10) > 20.0;
AddColumn( Close, "Last Close" );
AddColumn( V, "Volume",1 );
Plot(C,"",1,64);
PlotShapes(Cond1*shapeUpArrow,colorGreen);
First try explore, n last days and n=1
When you get results, click on one of the symbols and it should bring up the
symbol and it should have a arrow at yesterdays date.
John
-----Original Message-----
From: amibroker@xxxxxxxxxxxxxxx [mailto:amibroker@xxxxxxxxxxxxxxx] On Behalf
Of Larry
Sent: Wednesday, April 25, 2007 1:02 AM
To: amibroker@xxxxxxxxxxxxxxx
Subject: [amibroker] TAZ for Swing Trading
Hi,
I found the follwing TAZ Explorer.afl. As the name suggests, it's an
explorer. I think it is based on the TAZ Swing Trading Method which is
explained at http://www.swing-trade-stocks.com. Could someone please
modify it to become both a scanner and indicator?
Thank you.
Larry
wc = TimeFrameCompress(Close, inWeekly);
weeklyma = MA( wc, 10 );// 10 weeks
weeklyema = EMA( wc, 30); // 30 weeks
Filter = EMA(V, 60) > 150000 AND// a change may be required for low-volume
markets
L > Ref (L,-1) AND
Ref (L,-1) > Ref (L,-2)AND
MA(C,10) < EMA(C,30)AND
C > MA(C,10)AND
C < EMA(C,30)AND
weeklyma < weeklyema AND
ADX(10) > 20.0 AND
Close >= .10000;//change if you trade junk (I do)
AddColumn( Close, "Last Close" );
AddColumn( V, "Volume",1 );
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.5.463 / Virus Database: 269.6.0/775 - Release Date: 4/24/2007
5:43 PM
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.463 / Virus Database: 269.6.0/775 - Release Date: 4/24/2007
5:43 PM
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|