{"id":625,"date":"2011-05-06T10:23:52","date_gmt":"2011-05-06T15:23:52","guid":{"rendered":"http:\/\/www.amibroker.com\/devlog\/?p=625"},"modified":"2011-05-27T09:24:43","modified_gmt":"2011-05-27T14:24:43","slug":"amibroker-5-40-0-release-candidate-1","status":"publish","type":"post","link":"http:\/\/www.amibroker.com\/wordpress\/devlog\/2011\/05\/06\/amibroker-5-40-0-release-candidate-1\/","title":{"rendered":"AmiBroker 5.40.0 Release Candidate 1"},"content":{"rendered":"
Stability: - Stable, almost as good as final release version<\/em><\/p>\n This is a Release Candidate 1 version. Make a backup first<\/strong><\/font><\/p>\n A new RC version (5.40.0) of AmiBroker has just been released. It contains updated documentation and other support files.<\/p>\n 32-bit<\/strong> version: 64-bit <\/strong>version - update 5.40.1 (requires Professional Edition license<\/em>): Remember to BACKUP YOUR FILES FIRST !<\/strong><\/p>\n CHANGES FOR VERSION 5.40.1 (64-bit only)<\/strong> (as compared to 5.40.0)<\/p>\n CHANGES FOR VERSION 5.40.0<\/strong> (as compared to 5.39.0)<\/p>\n Inputs: Returns percent rank (0...100) of the current element of the array within all elements over the specified range. <\/p>\n A value of 100 indicates that the current element of the array is the highest for the given lookback range, while a value of 0 indicates that the current value is the lowest for the given lookback range.<\/p>\n It is equivalent (but 2x faster) to:<\/p>\n function PercentRank2( Data, Periods) For more details, instructions and examples how to use new features see What's new document.<\/a><\/p>\n For the full list of changes see Release Notes document.<\/a><\/p>\n UPGRADE POLICY AND PRICING<\/strong><\/p>\n Stability: – Stable, almost as good as final release version This is a Release Candidate 1 version. Make a backup first A new RC version (5.40.0) of AmiBroker has just been released. It contains updated documentation and other support files. 32-bit version: http:\/\/www.amibroker.com\/bin\/AmiBroker540rc1.exe (8 638 024 bytes) 64-bit version – update 5.40.1 (requires Professional Edition […]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":[],"categories":[9],"tags":[],"_links":{"self":[{"href":"http:\/\/www.amibroker.com\/wordpress\/devlog\/wp-json\/wp\/v2\/posts\/625"}],"collection":[{"href":"http:\/\/www.amibroker.com\/wordpress\/devlog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/www.amibroker.com\/wordpress\/devlog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/www.amibroker.com\/wordpress\/devlog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/www.amibroker.com\/wordpress\/devlog\/wp-json\/wp\/v2\/comments?post=625"}],"version-history":[{"count":0,"href":"http:\/\/www.amibroker.com\/wordpress\/devlog\/wp-json\/wp\/v2\/posts\/625\/revisions"}],"wp:attachment":[{"href":"http:\/\/www.amibroker.com\/wordpress\/devlog\/wp-json\/wp\/v2\/media?parent=625"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/www.amibroker.com\/wordpress\/devlog\/wp-json\/wp\/v2\/categories?post=625"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/www.amibroker.com\/wordpress\/devlog\/wp-json\/wp\/v2\/tags?post=625"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}
\nhttp:\/\/www.amibroker.com\/bin\/AmiBroker540rc1.exe<\/a>
\n(8 638 024 bytes) <\/p>\n
\nhttp:\/\/www.amibroker.com\/x64\/AmiBroker540rc1x64.exe<\/a>
\n(8 965 552 bytes)<\/p>\n\n
\n
\narray - input data
\nrange - lookback range <\/p>\n
\n{
\n Count = 0;
\n for ( i = 1; i <= Periods ; i++ )\n {\n Count += Data > Ref( Data, -i );
\n }
\n return 100 * Count \/ Periods;
\n}<\/p>\n<\/ol>\n\n