| 
 PureBytes Links 
Trading Reference Links 
 | 
I've got an exploration that looks for a pullback and then a breakout
over yesterday's high.  Its basically:
--------------------------------------------------
MYSETUP=High > Ref(H, -1) && Ref(H,-1) < Ref(H,-2) && Ref(H,-2) <
Ref(H,-3) && L < Ref(L, -1) && Ref(L,-1) < Ref(L,-2) && Ref(L,-2) <
Ref(L,-3);
Filter =  MYSETUP;
AddColumn(C, "C", 6.0);
AddColumn(V, "vol", 6.0);
---------------------------------------------------
I want to export this data to a file, along with the symbol and date,
for a specified period.   I'm not sure how best to do this.   I've
seen some examples, but I don't see one with a scan for a particular
setup.   
I'd also, like to export this to a watchlist in AB. 
Any help appreciated.
AP
------------------------ Yahoo! Groups Sponsor --------------------~--> 
Try Online Currency Trading with GFT. Free 50K Demo. Trade 
24 Hours. Commission-Free. 
http://us.click.yahoo.com/DldnlA/9M2KAA/U1CZAA/GHeqlB/TM
--------------------------------------------------------------------~-> 
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 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/
<*> 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/
 
 |