Australian (ASX) Stock Market Forum

Amibroker AFL formulas site?

Joined
27 January 2011
Posts
108
Reactions
0
Hi I am new to Amibroker and was wondering if there is a site with various formulas...

at the moment I am looking for one to display the highest volumes for the day...
 
Yes there is - the AFL library on the Amibroker website. You'll need to be a registered user to access it though, ie. not using the trial version.
 
at the moment I am looking for one to display the highest volumes for the day...

However, I should add that the code to do that is very simple to do. All you'd need to do is to write a simple exploration such as below:

Filter = 1;

AddColumn(V, "Volume", 1.0);

SetSortColumns( -3 );
 
Top