PureBytes Links
Trading Reference Links
|
If you're looking to identify strong trending stocks you can try
the following explorations with Amibroker.
I am relatively new to AB, but have found the below useful. Just
copy this into the Exploration Window and chose the appropriate
settings (ie time period, stocks etc etc)...
You can tweak the below as much as you want. Everything is pretty
straight forward once you spend some time assessing the results.
Enjoy!
// Trend Chasing Conditions
TimeFrameSet(inWeekly); // Looks at weekly charts
ROAR = int(5200*(LinRegSlope(C, 26)/LinearReg(C,26)));
// Conditions
Cond1 = ROAR > 0; // Change 0 (higher number, strong trend)
Cond2 = Cross(ADX(11),25); // Look for stocks where ADX crossed
above 25
Cond3 = ADX(11) > 10; // Use with Cond1 or Cond4
Cond4 = EMA(Close, 13) > EMA(Close, 26); // 13MA above 26MA
// Change Buy = to suit your scans
// eg Buy = Cond4;
Buy = Cond1 AND Cond2;
Filter = Buy;
AddColumn( Close, "Close", 1.4 );
------------------------ Yahoo! Groups Sponsor --------------------~-->
Yahoo! Domains - Claim yours for only $14.70
http://us.click.yahoo.com/Z1wmxD/DREIAA/yQLSAA/GHeqlB/TM
--------------------------------------------------------------------~->
Check AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> 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/
|