{"id":634,"date":"2011-06-09T04:46:15","date_gmt":"2011-06-09T09:46:15","guid":{"rendered":"http:\/\/www.amibroker.com\/devlog\/?p=634"},"modified":"2011-06-09T04:48:16","modified_gmt":"2011-06-09T09:48:16","slug":"amibroker-5-40-3-official-release","status":"publish","type":"post","link":"http:\/\/www.amibroker.com\/wordpress\/devlog\/2011\/06\/09\/amibroker-5-40-3-official-release\/","title":{"rendered":"AmiBroker 5.40.3 official release"},"content":{"rendered":"
Stability: - Stable, release version<\/em><\/p>\n A new official release version (5.40.3) of AmiBroker is available now. It contains updated documentation and other support files. Making backup prior to installation is recommended practice.<\/p>\n 32-bit<\/strong> version: 64-bit <\/strong>version (requires Professional Edition license<\/em>): Remember to BACKUP YOUR FILES FIRST !<\/strong><\/p>\n CHANGES FOR VERSION 5.40.3 (as compared to 5.40.2)<\/strong><\/p>\n CHANGES FOR VERSION 5.40.2 (as compared to 5.40.0)<\/strong><\/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, release version A new official release version (5.40.3) of AmiBroker is available now. It contains updated documentation and other support files. Making backup prior to installation is recommended practice. 32-bit version: http:\/\/www.amibroker.com\/bin\/AmiBroker540.exe (8 647 712 bytes) 64-bit version (requires Professional Edition license): http:\/\/www.amibroker.com\/x64\/AmiBroker540x64.exe (8 972 272 bytes) Remember to BACKUP YOUR FILES […]<\/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\/634"}],"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=634"}],"version-history":[{"count":0,"href":"http:\/\/www.amibroker.com\/wordpress\/devlog\/wp-json\/wp\/v2\/posts\/634\/revisions"}],"wp:attachment":[{"href":"http:\/\/www.amibroker.com\/wordpress\/devlog\/wp-json\/wp\/v2\/media?parent=634"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/www.amibroker.com\/wordpress\/devlog\/wp-json\/wp\/v2\/categories?post=634"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/www.amibroker.com\/wordpress\/devlog\/wp-json\/wp\/v2\/tags?post=634"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}
\nhttp:\/\/www.amibroker.com\/bin\/AmiBroker540.exe<\/a>
\n(8 647 712 bytes) <\/p>\n
\nhttp:\/\/www.amibroker.com\/x64\/AmiBroker540x64.exe<\/a>
\n(8 972 272 bytes)<\/p>\n\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