PureBytes Links
Trading Reference Links
|
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 amibroker@xxxxxxxxxxxxxxx, "robin_malihan" <robin_malihan@xxx>
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
>
------------------------------------
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|