Heopas
OP
— 30/11/2023 16:47
Implement MVWAP in technical indicators like some competitors has. I have manage to replicate it in tradingview with the following code
mvwapBands(source, length, multiplier) =>
vwma = ta.sma(source * volume, length) / ta.sma(volume, length)
upperBand = vwma * (1 + multiplier / 100)
lowerBand = vwma * (1 - multiplier / 100)
[upperBand, lowerBand]