VWAP
nj634677
Posts: 2
Is there anyway i could get the vwap indicator added to the TA lib? Its seems to be greatly used by retail traders right now and could be a good way to gauge the herd.plus price does seem to respect that level quite often.
Thanks!
Comments
TALIB is an external Python Library so we do not control that (http://ta-lib.org/)
Most TALIB calculations are based on passing a series of bars (OHLCV Open High Low Close Volume) either daily or minute or groups of minutes and it returns a set of values.
VWAP is a Volume Weighted Average Price. It is calculated on a trade by trade basis.
As such TALIB would not be able to calculate it.
We do calculate VWAP in our backtesting system but there are some glitches with the way it is calculated (we hope to get these resolved soon).
Try the following script to see the VWAP updating... You will need ELITE for the on_trade callback to be called.
Thank you very much! ill go through that