Not sure if what you're looking for, but it may help. You can visualiza at any timeframe, the data from any other timeframe. For example, you could see the weekly VWAP from the 1m chart.
// VWAP
price = input(type=input.source, defval=hlc3, title="VWAP Source")
enable_vwap = input(true, title="Enable VWAP")
vwapResolution = input(title = "VWAP Resolution", defval = "", type=input.resolution)
vwapFunction = vwap(price)
vwapSecurity = security(syminfo.tickerid, vwapResolution, vwapFunction)
plot(enable_vwap ? vwapSecurity : na, title="VWAP", color=color.white, linewidth=2, transp=0, editable=true) // All TimeFrames
Here's an example on 1h chart, checking the 1week information in this VWAP I'm providing here (white colored line), and the built-in one from TV (yellow one):

You can tell there's a difference and you'll probably find the way to make a better use of this. Play with it, try different approaches at different timeframes.
By the way, in the white VWAP on the screenshot I used the low price as source input for white VWAP, while de default (yellow VWAP uses hcl3).