Could you please, help in how to adjust the daily VWAP to the Australian time zone
This is the classic VWAP indicator:
if day <> day[1] then
d = 0
else
d = d + 1
if volume > 0 then
VWAP = SUMMATION[d](volume * typicalprice) / SUMMATION[d](volume)
endif
endif
RETURN VWAP as "VWAP"
simply replace line 1 by:
if Time = HHMMSS then
where HHMMSS is a 6-digit number formed by using 2 digits for the hour + 2 digits for the minute + 2 digits for the second (usually 00, unless you use seconds as TF). This is the time you choose to reset VWAP daily.