PureBytes Links
Trading Reference Links
|
Dick Hoierman was aware of a METASTOCK
exploration called PERFORMANCE, and he graciously shared the Amibroker
version of it with us .
This happens to be the VOLUME version of it.
I would like to have it modified so it can be
run my entire Yahoo stocks DATABASE, but I want it to SKIP the
INDEXES and MUTUAL FUNDS so that I find ONLY the volumes of
single STOCKS, ETF'S, MLP'S, REITS, etc.
Hopefully, an Amerbrokerian on this board can do
this. Thanks Ron D.
MA10= MA(V,10);
MA25= MA(V,25);
MA50= MA(V,50);
MA75= MA(V,75);
MA100= MA(V,100);
//AddTextColumn( FullName(), "FullName" );
AddColumn (MA10, "MA10",1.2);
AddColumn (MA25, "MA25",1.2);
AddColumn (MA50, "MA50",1.2);
AddColumn (MA75, "MA75",1.2);
AddColumn (MA100, "MA100",1.2);
Filter = 1;
// dummy
__._,_.___
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
__,_._,___
|
|