[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: [amibroker] AmiBroker 4.31.0 BETA released



PureBytes Links

Trading Reference Links




maybe 
just install the language pack?
 Jayson 
<FONT face=Tahoma 
size=2>-----Original Message-----From: bluesinvestor 
[mailto:investor@xxxxxxxxxxxxx]Sent: Sunday, April 13, 2003 12:29 
PMTo: amibroker@xxxxxxxxxxxxxxxSubject: RE: [amibroker] 
AmiBroker 4.31.0 BETA releasedHmm ... it did it 
again.  Plain text should get rid of the message.Anyone know what 
is going on and how to get rid of this problem?Thanks in 
advance,Peter-----Original Message-----From: bluesinvestor 
[mailto:investor@xxxxxxxxxxxxx] Sent: Sunday, April 13, 2003 12:25 PMTo: 
amibroker@xxxxxxxxxxxxxxxSubject: RE: [amibroker] AmiBroker 4.31.0 BETA 
releasedI noticed this also &#8230; and I keep getting the notice also.  
I do not knowwhy my message would initiate the 
message.Peter-----Original Message-----From: Steve Dugas 
[mailto:sjdugas@xxxxxxxxx] Sent: Sunday, April 13, 2003 11:51 AMTo: 
amibroker@xxxxxxxxxxxxxxxSubject: Re: [amibroker] AmiBroker 4.31.0 BETA 
releasedHmmm - now Peter's message is using Japanese, and there is no 
previousJapanese message attached...probably a stupid question, but could 
therebe some kind of virus that is changing people's settings? Thank 
you. Steve----- Original Message ----- From: bluesinvestor 
To: amibroker@xxxxxxxxxxxxxxx Sent: Sunday, April 13, 2003 11:42 
AMSubject: RE: [amibroker] AmiBroker 4.31.0 BETA releasedWOW (&#8216;nuff 
said)Thanks as always,Peter-----Original 
Message-----From: Tomasz Janeczko [mailto:tj@xxxxxxxxxxxxx] Sent: 
Sunday, April 13, 2003 5:07 AMTo: amibroker@xxxxxxxxxxxxxxxSubject: 
[amibroker] AmiBroker 4.31.0 BETA releasedHello, A new beta 
version (4.31.0) of AmiBroker has just been released. It is 
available for registered users only from the members area at:<A 
href="">http://www.amibroker.com/members/bin/ab4310beta.exe If 
you forgot your user name / password to the members areayou can use 
automatic reminder service at:<A 
href="">http://www.amibroker.com/login.html This 
release brings huge improvement to AFL: for and while loops and if-else flow 
control statements. Native AFL loops run 2..3 times faster than 
JScript (according to mypreliminary tests on arrays with 1000-5000 
bars) For more details and example code please read the following 
"READ ME"text. NOTE: from now on all beta releases will be 
available to registeredusers only (in member area). Best 
regards,Tomasz Janeczkoamibroker.com  AmiBroker 
4.31.0 Beta Read MeApril 13, 2003 10:38 THIS IS AN EARLY BETA VERSION OF 
THE SOFTWARE. EXPECT BUGS !!!AGAIN: THIS IS AN EARLY BETA VERSION OF THE 
SOFTWARE. EXPECT BUGS !!!Backup your data files and entire AmiBroker folder 
first!INSTALLATION INSTRUCTIONSIMPORTANT: This archive is update-only. 
You have to install full version4.30 first. Just run the installer and 
follow the instructions. Then run AmiBroker. You should see "AmiBroker 
4.31.0 beta" written inthe About box.CHANGES FOR VERSION 4.31.0 (as 
compared to 4.30.0)&#8226; Workspace window uses "icon font" set in the Windows 
settings insteadof hard coded Tahoma 8 &#8226; for better readability and 
ClearType(tm) compatibility on WinXP, alldialog windows use now 'MS Shell 
Dlg' face name that maps to standard MSSans Serif on Win 9x/Me/NT and Tahoma 
on Win 2K and XP. &#8226; rewritten AFL parser, now formula is parsed and coverted 
to syntaxtree and then interpreted. This would allow further 
improvementsincluding compilation. This allowed also to add 
loops/if-elsestatements. &#8226; implemented IF/ELSE statement, WHILE and FOR 
loops:The same basic 'for' loop in AFL is 2..3 times faster than in 
JScriptSyntax follows C++/JScript style: while( conditional_expression ) 
statement;for( initializer_part; conditional_expression; iterator_part 
)statement;if( conditional_expression ) statement;if( 
conditional_expression ) statement;elsestatement;&#8226; implemented 
compound statements: these are blocks of statementsenclosedin opening 
and closing curly brace 
{statement1;statement2;...statementN;}compound 
statement can appear anywhere when simple statement can.For example:i = 
10;while( i < 20 ){Plot( MA( Close, i ), "MA" + WriteVal( i, 0 ), 
colorBlack + i );i = i + 1;}&#8226; implemented C-style postfix and prefix 
increment/decrement operatorsi = 10;WriteIf( i++ );WriteIf( ++i 
);WriteIf( i );&#8226; implemented array element access (subscript) operator 
[]:WriteVal( Close[ 0 ] ); // prints the first bar of close array/* a 
sample low-level implementation of exponential moving average inAFL 
*/myema[ 0 ] = Close[ 0 ];for( i = 1; i < BarCount; i++ 
){myema[ i ] = 0.1 * Close[ i ] + 0.9 * myema[ i - 1 ];}&#8226; added 
built-in constant 'BarCount' that returns number of barsavailable in arrays 
(the number of elements of array)When QuickAFL is turned on it may be less 
than true number of barsbecause QuickAFL feature attempts to use only 
visible bars (and fewbefore). You can control how many bars the formula 
requires usingSetBarsRequired() function&#8226; implemented infinite-loop 
protection. Nice if you forgot to incrementcounter variable in 'for' loop 
:-)&#8226; tab key now works without need to press ALT/CTRL in AFL editors&#8226; 
added C-like synonyms for logical ADD/OR/NOT: &&, ||, ! /* a 
sample low-level implementation of Profit-target stop in AFL: */Buy = Cross( 
MACD(), Signal() );priceatbuy=0;for( i = 0; i < BarCount; i++ 
){     if( priceatbuy == 0 && Buy[ i ] 
)      priceatbuy = BuyPrice[ i 
];     if( priceatbuy > 0 && SellPrice[ 
i ] > 1.1 * priceatbuy 
)     {       Sell[ 
i ] = 1;       SellPrice[ i ] = 1.1 * 
priceatbuy;       priceatbuy = 
0;     }     else       Sell[ 
i ] = 0;}/* sample EMA rainbow */Plot( Close, "Price", colorBlack, 
styleCandle );for( Range = 15; Range < 100; Range++ 
)   Plot( EMA( Close, Range ), "MA"+WriteVal(Range,0), 
colorRose + Range% 8, styleNoLabel );HOW TO REPORT BUGSIf you 
experience any problem with this beta version please senddetailed 
description of the problem (especially the steps needed toreproduce it) to 
bugs@xxxxxxxxxxxxx Send BUG REPORTS to bugs@xxxxxxxxxxxxxSend 
SUGGESTIONS to 
suggest@xxxxxxxxxxxxx-----------------------------------------Post 
AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx (Web page: <A 
href="">http://groups.yahoo.com/group/amiquote/messages/)--------------------------------------------Check 
group FAQ at:<A 
href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. 
Send BUG REPORTS to bugs@xxxxxxxxxxxxxSend SUGGESTIONS to 
suggest@xxxxxxxxxxxxx-----------------------------------------Post 
AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx (Web page: <A 
href="">http://groups.yahoo.com/group/amiquote/messages/)--------------------------------------------Check 
group FAQ at:<A 
href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. 
Send BUG REPORTS to bugs@xxxxxxxxxxxxxSend SUGGESTIONS to 
suggest@xxxxxxxxxxxxx-----------------------------------------Post 
AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx (Web page: <A 
href="">http://groups.yahoo.com/group/amiquote/messages/)--------------------------------------------Check 
group FAQ at:<A 
href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. 
Yahoo! Groups SponsorSend BUG REPORTS to 
bugs@xxxxxxxxxxxxxSend SUGGESTIONS to 
suggest@xxxxxxxxxxxxx-----------------------------------------Post 
AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx (Web page: <A 
href="">http://groups.yahoo.com/group/amiquote/messages/)--------------------------------------------Check 
group FAQ at:<A 
href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. 
Send 
BUG REPORTS to bugs@xxxxxxxxxxxxxSend SUGGESTIONS to 
suggest@xxxxxxxxxxxxx-----------------------------------------Post 
AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx (Web page: <A 
href="">http://groups.yahoo.com/group/amiquote/messages/)--------------------------------------------Check 
group FAQ at: <A 
href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html 
Your use of Yahoo! Groups is subject to the <A 
href="">Yahoo! Terms of Service. 







Yahoo! Groups Sponsor


  ADVERTISEMENT









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



Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.