PureBytes Links
Trading Reference Links
|
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
<*> 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/
|