VWAP Bands – Standard Deviation
Forums › ProRealTime English forum › ProBuilder support › VWAP Bands – Standard Deviation
- This topic has 8 replies, 2 voices, and was last updated 4 years ago by sixeight.
-
-
06/16/2020 at 10:35 AM #136093
Hello All,
I’ve been trying to use the VWAP Bands which come as standard in the PRT platform but I’ve noticed large discrepancies between PRT and the TradingView VWAP Bands. I’ve attached the code below from the TV indicator – is there a reason that they’re so different? TradingView seems to fit closely with what I’m looking for whereas the PRT bands are miles away from price.
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798//"version=2//with barcolors and stuffstudy("VWAP Stdev Bands v2 Mod", overlay=true)devUp1 = input(1.28, title="Stdev above (1)")devDn1 = input(1.28, title="Stdev below (1)")devUp2 = input(2.01, title="Stdev above (2)")devDn2 = input(2.01, title="Stdev below (2)")devUp3 = input(2.51, title="Stdev above (3)")devDn3 = input(2.51, title="Stdev below (3)")devUp4 = input(3.09, title="Stdev above (4)")devDn4 = input(3.09, title="Stdev below (4)")devUp5 = input(4.01, title="Stdev above (5)")devDn5 = input(4.01, title="Stdev below (5)")showBcol = input(true, title="Turn Barcolor ON/OFF?")showDv2 = input(true, type=bool, title="Show second group of bands?")showDv3 = input(true, type=bool, title="Show third group of bands?")showDv4 = input(false, type=bool, title="Show fourth group of bands?")showDv5 = input(false, type=bool, title="Show fifth group of bands?")showPrevVWAP = input(false, type=bool, title="Show previous VWAP close")ColorSrc=input(close)price=ColorSrcstart = security(tickerid, "D", time)newSession = iff(change(start), 1, 0)vwapsum = iff(newSession, hl2*volume, vwapsum[1]+hl2*volume)volumesum = iff(newSession, volume, volumesum[1]+volume)v2sum = iff(newSession, volume*hl2*hl2, v2sum[1]+volume*hl2*hl2)myvwap = vwapsum/volumesumdev = sqrt(max(v2sum/volumesum - myvwap*myvwap, 0))A=plot(myvwap,style=circles, title="VWAP", color=black)U1=plot(myvwap + devUp1 * dev,style=circles, title="VWAP Upper", color=gray)D1=plot(myvwap - devDn1 * dev, style=circles, title="VWAP Lower", color=gray)myvwapu1= myvwap + devUp1 * devmyvwapd1= myvwap - devDn1 * devU2=plot(showDv2 ? myvwap + devUp2 * dev : na, color=red, title="VWAP Upper (2)")D2=plot(showDv2 ? myvwap - devDn2 * dev : na, color=green, title="VWAP Lower (2)")myvwapu2= myvwap + devUp2 * devmyvwapu3= myvwap + devUp3 * devmyvwapd2= myvwap - devDn2 * devmyvwapd3= myvwap - devDn3 * devU3=plot(showDv3 ? myvwap + devUp3 * dev : na, title="VWAP Upper (3)", color=red)D3=plot(showDv3 ? myvwap - devDn3 * dev : na, title="VWAP Lower (3)", color=green)myvwapu4= myvwap + devDn4 * devmyvwapd4= myvwap - devDn4 * devU4=plot(showDv4 ? myvwap + devUp4 * dev : na, title="VWAP Upper (4)", color=red)D4=plot(showDv4 ? myvwap - devDn4 * dev : na, title="VWAP Lower (4)", color=green)U5=plot(showDv5 ? myvwap + devUp5 * dev : na, title="VWAP Upper (5)", color=red)D5=plot(showDv5 ? myvwap - devDn5 * dev : na, title="VWAP Lower (5)", color=green)prevwap = iff(newSession, myvwap[1], prevwap[1])plot(showPrevVWAP ? prevwap : na, style=circles, color=close > prevwap ? green : red)ColorMiddleU = price > myvwap and price < myvwapu2 ? white:naColorMiddleD = price > myvwapd1 and price < myvwap ? black:naColorDv1d = price > myvwapd2 and price < myvwapd1 ? gray:naColorDv1u = price > myvwapu1 and price < myvwapu2 ? gray:naColorDv2d = price > myvwapd3 and price < myvwapd2 ? green:naColorDv2u = price > myvwapu2 and price < myvwapu3 ? maroon:naColorDv3d = price > myvwapd4 and price < myvwapd3 ? lime:naColorDv3u = price > myvwapu3 and price < myvwapu4 ? red:nabarcolor(showBcol?ColorMiddleD:na, title="BarColor vwap-1 Lower")barcolor(showBcol?ColorMiddleU:na, title="BarColorColor vwap-1 upper")barcolor(showBcol?ColorDv1d:na, title="BarColor 1-2 Lower")barcolor(showBcol?ColorDv1u:na, title="BarColorColor 1-2 upper")barcolor(showBcol?ColorDv2d:na, title="BarColor 2-3 Lower")barcolor(showBcol?ColorDv2u:na, title="BarColorColor 2-3 upper")barcolor(showBcol?ColorDv3d:na, title="BarColor 3-4 Lower")barcolor(showBcol?ColorDv3u:na, title="BarColorColor 3-4 upper")fill(U1, U2, color=red, transp=90, title="Over Bought Fill 1")fill(D1, D2, color=green, transp=90, title="Over Sold Fill 1")fill(U2, U3, color=red, transp=90, title="Over Bought Fill 2")fill(D2, D3, color=green, transp=90, title="Over Sold Fill 2")fill(U3, U4, color=red, transp=90, title="Over Bought Fill 3")fill(D3, D4, color=green, transp=90, title="Over Sold Fill 3")fill(U4, U5, color=red, transp=90, title="Over Bought Fill 4")fill(D4, D5, color=green, transp=90, title="Over Sold Fill 4")fill(A, U1, color=gray, transp=90, title="Middle Fill Up")fill(A, D1, color=gray, transp=90, title="Middle Fill Down")06/16/2020 at 12:19 PM #136115What VWAP indicator do you refer as “PRT bands” please? Is the default one in the platform or a custom code you found here in the forums?
BTW please note that the tradingview code you have posted uses multiplier for the bands based on the golden ratio (which is not the ordinary way to display the VWAP bands).
06/16/2020 at 2:24 PM #13613806/16/2020 at 2:28 PM #13614006/16/2020 at 2:35 PM #13615206/16/2020 at 2:51 PM #13616206/16/2020 at 2:54 PM #136165That is what I was expecting Nicolas, I have it on the Daily VWAP setting but can’t modify it any further. I currently have the IG Spreadbet contract but they should be the same – and from a rudimentary look, the price is the same
06/16/2020 at 3:50 PM #136174Maybe try this custom code: https://www.prorealcode.com/topic/is-there-any-working-intraday-vwap/#post-116309
You will be able to change the deviation factor like the one from TV (by modding the code though..).
06/17/2020 at 9:00 AM #136222 -
AuthorPosts