The afl from Paul will also do the same . As yet not looking at it(patternz) very seriously, was more out of curiosity. Only pattern I look at is triangles and that too not in a structured sort of manner more or seek them actively, more in my mind kind of stuff.
R
This afl will export your daily data, each symbol into a separate txt file. Just change the path to suit yourself
if (Name()== "PRN" )
filename = "PR";
else
{
if(Name ()=="AUX" )
filename = "AU";
else
filename = Name();
}
fh = fopen ( "E:\\Documents and Settings\\paul\\My Documents\\Trading\\Stuffup\\" +filename+ ".TXT", "w");
if ( fh )
{
fputs ( "Ticker,Date,Open,High,Low,Close,Volume \n" , fh );
y = Year ();
m = Month ();
d = Day ();
for( i = 0; i < BarCount; i++ )
{
fputs( Name () + "," , fh );
ds = StrFormat( "%02.0f-%02.0f-%02.0f,", y[ i ], m[ i ], d[ i ] );
fputs( ds, fh );
qs = StrFormat( "%.4f,%.4f,%.4f,%.4f,%.0f\n", O[ i ],H[ i ],L[ i ],C[ i ],V[ i ] );
fputs( qs, fh );
}
fclose ( fh );
}
Buy = 0;
From: [email protected] [mailto: [email protected]] On Behalf Of Joe Landry
Sent: Tuesday, 24 October 2006 11:24 PM
To: [email protected]
Subject: Re: [amibroker] Downloading data for Bulkowski
Hello Rakesh
That would be outstanding and a way I didn't expect or certainly think of! I get QPlus data really don't want to download from Yahoo if I don't have to.
Please post it or send it directly if you please.
Have you worked with PatternZ? Engineered the patterns in AFL?
Thanks for the prompt response
Joe
----- Original Message -----
From: Rakesh Sahgal
Sent: Tuesday, October 24, 2006 8:13 AM
Subject: Re: [amibroker] Downloading data for Bulkowski
Not AQ but if you want I can post the AFL that dumps your database from AB for use with PatternZ. As to the date format there is some flexibility WRT built into the program. You can acess the date format options via the "File Format" options. File Format--->Date Format.
ROn 10/24/06, Joe Landry <[EMAIL PROTECTED]> wrote:
I'm working with the Bulkowski patterns and resorted to downloading stocks from Yahoo using MLDownloader yesterday.
http://www.trading-tools.com/ to run through PatternZ, the Bulkowski pattern recognition routine,
AND
I'm asking whether anyone has been able to use Amiquote to do the same. PatternZ accepts a straight forward format CSV
ASCII except it likes(could be it's flexible??) 4 digits for the year, YYYY in the date field.
My work is at a very low level, comparing his top patterns(1-4) with what I see and can discern in AB. Sort of reverse engineering
since I'm not sure what his parameters are for example a rectangle...sometimes it 30 bars and other times it's 15 for the length of
the rectangle.
Thanks in advance
Joe
__._,_.___
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 NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
| Investment management software | Investment property software | Investment software |
| Investment tracking software | Return on investment software |
Change settings via the Web (Yahoo! ID required)
Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe
__,_._,___
