PureBytes Links
Trading Reference Links
|
see this series of functions in help
File Input/Output functions
fclose - close a file (AFL 2.5)
fdelete - deletes a file (AFL 2.70)
feof - test for end-of-file (AFL 2.5)
fgets - get a string from a file (AFL 2.5)
fmkdir - creates (makes) a directory (AFL 2.70)
fopen - open a file (AFL 2.5)
fputs - write a string to a file (AFL 2.5)
frmdir - removes a directory (AFL 2.70)
there are examples in afl library using them
On 7/26/05, voyager_3k <voyager3k@xxxxxxxxxxx> wrote:
> 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
>
>
>
>
>
>
>
>
> 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
>
>
>
>
>
>
>
>
--
Cheers
Graham
AB-Write >< Professional AFL Writing Service
Yes, I write AFL code to your requirements
http://e-wire.net.au/~eb_kavan/ab_write.htm
------------------------ 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/
|