[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: [amibroker] Volume Weighted Moving Average



PureBytes Links

Trading Reference Links

Jayson,  Once again - Thank you.
At 09:42 PM 10/29/02, you wrote:
larry,
 
on a custom
chart...
 

x=Sum((Volume*Close),10)/Sum
(Volume,10);

Plot(x,"VMA",colorYellow,4);

Plot(C,"",colorGreen,styleCandle);

or just place 
x=Sum((Volume*Close),10)/Sum
(Volume,10);
Plot(x,"VMA",colorYellow,4);

in the standard price
chart above the line that says.....  

//--Indicator-End--
Line

Jayson 
-----Original Message-----
From: Larry M. Powell
[mailto:larypowell@xxxx]
Sent: Tuesday, October 29, 2002 11:40 PM
To: amibroker@xxxxxxxxxxxxxxx
Subject: [amibroker] Volume Weighted Moving Average
I would like to be able to plot the following on the price chart,
I have tried sever method of "plot" but does not seem to
work.  Thanks,
/* The Volume
Weighted Moving Average calculates the sum of the volume times the data
field for each day in the average, then divides this value by the sum of
the volumes in that period. */
Graph0 =
Sum((Volume*Close),10)/Sum
(Volume,10);

Your use of Yahoo! Groups is subject to the
Yahoo! Terms of
Service.