PureBytes Links
Trading Reference Links
|
Hello,
It is formatting the code so it looks nicely.
For example converting from:
function myfunc(x) { for(i=0;i<BarCount;i++) {result[i]=2*x[i]};return result;}
to:
function myfunc( x )
{
for( i = 0; i < BarCount; i++ )
{
result[ i ] = 2 * x[ i ];
}
return result;
}
Best regards,
Tomasz Janeczko
amibroker.com
----- Original Message -----
From: "Graham" <kavemanperth@xxxxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Friday, October 05, 2007 1:01 AM
Subject: Re: [amibroker] Re: CODE beautification for AFL
> Can you explain what is meant by "code beautification"
>
> --
> Cheers
> Graham Kav
> AFL Writing Service
> http://www.aflwriting.com
>
>
> On 05/10/2007, Tomasz Janeczko <groups@xxxxxxxxxxxxx> wrote:
>> Thanks to the fact that AFL syntax is pretty similar to C/C++ and Java
>> you can actually use any C/C++ tool for this job.
>>
>> Best regards,
>> Tomasz Janeczko
>> amibroker.com
>> ----- Original Message -----
>> From: "murthysuresh" <money@xxxxxxxxxxxxxx>
>> To: <amibroker@xxxxxxxxxxxxxxx>
>> Sent: Friday, October 05, 2007 12:50 AM
>> Subject: [amibroker] Re: CODE beautification for AFL
>>
>>
>> > google pointed to http://www.sqcbw.com/source-code-beautifier-
>> > formatter-indenter-tool-utility-en/
>> >
>> > i used renamed afl as a java file and bingo- it formatted it
>> > beautifully. let me try the 30 days and see how it works
>> > seede
>> >
>> > --- In amibroker@xxxxxxxxxxxxxxx, "dingo" <dingo@xxx> wrote:
>> >>
>> >> In this particular case YOU are the tool..
>> >>
>> >> d
>> >>
>> >> > -----Original Message-----
>> >> > From: amibroker@xxxxxxxxxxxxxxx
>> >> > [mailto:amibroker@xxxxxxxxxxxxxxx] On Behalf Of murthysuresh
>> >> > Sent: Thursday, October 04, 2007 5:52 PM
>> >> > To: amibroker@xxxxxxxxxxxxxxx
>> >> > Subject: [amibroker] CODE beautification for AFL
>> >> >
>> >> > Are there any tools that would do code beautification for AFL?
>> >> >
>> >> > Seede
>
>
> 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
>
> Yahoo! Groups Links
>
>
>
>
>
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
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> 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/
|