Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Volume Weighted MA ( VWMA ) for Amibroker (AFL)
Volume Weighted MA ( VWMA )
OR
Volume Adjusted MA ( VAMA )
Screenshots
Indicator / Formula
SetChartBkGradientFill( 54, 54 );
function VWMA( price, pds )
{
aa = Sum( ( Volume * price ), pds );
bb = Sum( Volume, pds );
Cc = aa / Nz( bb );
return Cc;
}
pr = ( 2 * Close + High + Low ) / 4;
Plot( Close, "Close", 1, 64 );
Plot( VWMA( pr, 8 ), "Close", 29, 5 );0 comments
Leave Comment
Please login here to leave a comment.
Back