Re: MT4 Indicator requests and ideas

13143
Dear Mr Tools and Mladen, pl help for vwap. I have been searching for past few days for a vwap which is exactly in the tradingview. I have noticed that in tradingview and in MT4 the weave app form are different.
when i open the nifty future chart in mt4 the vwap is different as compared to the one in trading view and broker zerodha. i miss all important entries beacause of that. i have tried using all formulas Nothing is working :( Please help make one for MT4 which is exactly same as tradingview. I have found the the code for tradingview in this site. Great thanks and Regards

The code in trading view is as somone else was facing the same Issue
https://www.mql5.com/en/forum/357780

// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/

// © MichelT



//@version=4

study(title="Anchored VWAP", shorttitle="VWAP", overlay=true)



anchor = input(defval = "Session", title="Anchor Period", type=input.string, options=["Session", "Week", "Month", "Year"])



MILLIS_IN_DAY = 86400000



dwmBarTime = timeframe.isdwm ? time : time("D")

// If it's a short day, then there could be no daily bar. Take a previous one.

if na(dwmBarTime)

dwmBarTime := nz(dwmBarTime[1])

var periodStart = time - time // zero



// in pine week starts on Sunday and it's value 1. Value of Monday is 2

// we need a week to start on Monday and its value should be 0

makeMondayZero(dayOfWeek) => (dayOfWeek + 5) % 7



isMidnight(t) =>

hour(t) == 0 and minute(t) == 0



isSameDay(t1, t2) =>

dayofmonth(t1) == dayofmonth(t2) and

month(t1) == month(t2) and

year(t1) == year(t2)



isOvernight() =>

not (isMidnight(dwmBarTime) or security(syminfo.tickerid, "D", isSameDay(time, time_close), lookahead=true))



tradingDayStart(t) =>

y = year(t)

m = month(t)

d = dayofmonth(t)

timestamp(y, m, d, 0, 0)



numDaysBetween(time1, time2) =>

y1 = year(time1)

m1 = month(time1)

d1 = dayofmonth(time1)



y2 = year(time2)

m2 = month(time2)

d2 = dayofmonth(time2)



diff = abs(timestamp("GMT", y1, m1, d1, 0, 0) - timestamp("GMT", y2, m2, d2, 0, 0))

diff / MILLIS_IN_DAY



// a symbol with overnight session starts at previos day

// to get the trading day we should get the next day after the session's start

tradingDay = isOvernight() ? tradingDayStart(dwmBarTime + MILLIS_IN_DAY) : tradingDayStart(dwmBarTime)



isNewPeriod() =>

isNew = false

if tradingDay != nz(tradingDay[1])

if anchor == "Session"

isNew := na(tradingDay[1]) or tradingDay > tradingDay[1]



if anchor == "Week"

DAYS_IN_WEEK = 7

isNew := makeMondayZero(dayofweek(periodStart)) + numDaysBetween(periodStart, tradingDay) >= DAYS_IN_WEEK



if anchor == "Month"

isNew := month(periodStart) != month(tradingDay) or year(periodStart) != year(tradingDay)



if anchor == "Year"

isNew := year(periodStart) != year(tradingDay)

isNew



src = hlc3

sumSrc = float(na)

sumVol = float(na)



sumSrc := nz(sumSrc[1], 0)

sumVol := nz(sumVol[1], 0)



if isNewPeriod()

periodStart := tradingDay

sumSrc := 0.0

sumVol := 0.0





if not na(src) and not na(volume)

sumSrc := sumSrc + src * volume

sumVol := sumVol + volume



vwapValue = sumSrc / sumVol

plot(vwapValue, title="VWAP", color=#3A6CA8)

Re: MT4 Indicator requests and ideas

13145
@mrtools


Respected Sir,

If you find useful then Please Provide Options :
1) Option to Turn off ( or change colour to None ) for Floating Levels. * -- Right now unable to turn off Floating Level Lines
2) Option to Change Width of Shadow Line. *
3) Option for Chart Background Zones ( Chart Bdg Zones ) -- According to Up, Down & Neutral



Thanks for Kindness, Generosity, Support & Shares.
Thanks.


Re: MT4 Indicator requests and ideas

13149
tkhanfx wrote: Sun Jun 27, 2021 6:05 pm Good day Mr. Tools

Could you kindly help to identify the attached indicator and help me find mql4 file of original? Am sure it is a renamed indicator from this forum

Thank you as always for your untiring effort
This one can work
These users thanked the author Cladi39 for the post (total 3):
Jimmy, tkhanfx, Rabi


Who is online

Users browsing this forum: acceptableshawon, Amazon [Bot], Applebot [Crawler], boytoy, Majestic-12 [Bot], Mojeek [Bot], Ogee, TECHHDATE07, TransparentTrader, Tur005 and 70 guests