PureBytes Links
Trading Reference Links
|
Cordell,
Try this for starters (the results seem to match the
article--73% winners). Annual return since 1993 is
17%, max drawdown is 28%. Nothing stellar, but I'm
sure there's room for dramatic improvement. It does
have 92% winners during the bull run this year, so I
think adding a simple trend filter would help
(although buy and hold would have outperformed this
year).
Walid
// Buying pullbacks
// Buy on a new 10-day low, and exit when prices cross
above
// the 10-day MA
// assumes a moc order if it looks like close will be
// a new 10-day low
// Try on ^NDX, ^SPX, or QQQ
// Set settings for long only
Buy=C<Ref(LLV(C,10),-1);
BuyPrice=C;
Sell=C>MA(C,10);
SellPrice=C;
SetTradeDelays(0,0,0,0);
--- ct1942 <ct1942@xxxxxxxxx> wrote:
> Hello,
>
> Larry Conners of Trading Markets.com recently wrote
> a couple of
> intresting articles on buying pullbacks:
>
> http://biz.yahoo.com/tm/031208/11017_4.html
> http://biz.yahoo.com/tm/031216/11054_3.html
>
> I was wondering if anybody has coded this in AFL.
> And, if so, would
> you mind sharing it?
>
> Thanks,
>
> Cordell
>
>
__________________________________
Do you Yahoo!?
New Yahoo! Photos - easier uploading and sharing.
http://photos.yahoo.com/
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
------------------------ 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
---------------------------------------------------------------------~->
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/
|