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

Re: Volume-Weighted MACD Histogram? Help please!



PureBytes Links

Trading Reference Links

> Volume-weighted 26-period EMA
EMA(V,26)
> Volume-weighted 12-period EMA

> A 9-bar EMA of the Long minus Short EMA


MAVD= EMA(V,12)-EMA(V,26); /*short minus Long*/
TrigV=EMA(MAVD,9);
Histo= TrigV - MaVD;

> 
> Then subtract the Signal from the MACD to get the Histogram data. 
> Result is a volume-weighted MACD Histogram.
> 
> How do I do that? It should be easy for an experienced user, which 
> I'm not!
> Help, thanks!
> ghoup