How to plot price * vol indicator..plzz help

#1
I want a very simple thing, an indicator that displays (close-open)*Vol + the value at previous bar

something like this :

PV = PV+(close-open)*Vol

If someone gives an indicator AFL for it, i wud be extremely thankful.
 
#2
Here is your amibroker code:

_SECTION_BEGIN("PriceVolume Indicator");
PriceVol = (C-O)*Volume;
PV_Indicator = Cum(PriceVol);

Plot(PV_Indicator, "PriceVolume Indicator", ParamColor("Color Plzz", colorGreen), styleLine|styleThick|styleDots);

_SECTION_END();
 

Similar threads