| 
 PureBytes Links 
Trading Reference Links 
 | 
Hello to all.  I just read an interesting article by Larry Connors on 
TradingMarkets.com re: Buying markets which pull back (is this case, 
to 10-day lows.  Not being a programmer, I rely heavily on the code 
that everyone shares on this board, and I found this from Dimitri 
that he shared for another example:
Buy = L==Trough(L,10);
Short = H==Peak(H,10);
Sell = Short;
Cover = Buy;
Buy=ExRem(Buy,Sell);Sell=ExRem(Sell,Buy);
Short=ExRem(Short,Cover);Cover=ExRem(Cover,Short);
Filter= Close > 2 AND ( Buy OR Sell ) ;
Is this on the right track to develop an Exploration/Bcktest for this 
strategy? If so, can anyone add/tweak it?
I also found (0n the AB website)code for a Dave Landry 7 and 3 day 
pullback from Daniel Erbi- much more involved and complex code, but 
if this is a better startiing point, I'll go with it.
I'm interested in finding a comfortable swing trade strategy - the 10 
day pullback looks good to me for my needs.
Any help is appreciated.
THanks in advance.
EdM
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for your HP, Epson, Canon or Lexmark
Printer at MyInks.com. Free s/h on orders $50 or more to the US & Canada.
http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/GHeqlB/TM
---------------------------------------------------------------------~->
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx 
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html 
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/ 
 
 |