See the user's guide on how to write your own exploration: http://www.amibroker.com/guide/h_exploration.html
It is not clear what you mean by "increased from its 60 bar vol". I am assuming that you mean compared to its 60 bar moving average. Try something like the following: Buy = Sell = 0; Delta = Volume - MA(Volume, 60); Filter = Delta > 0; AddColumn(Delta, "Volume Change"); SetSortColumns(-1); // Sort by last column Mike --- In [email protected], "robin_malihan" <[EMAIL PROTECTED]> wrote: > > I want a AFL that can give me how much the vol has increased from its > 60 bar vol in decending oder. i want this to be automated search .. > > > CAn anyone of the senior code this for me . > > Thanks > > Robin >
