Page 817 of 2041

Re: MT4 Indicator requests and ideas

Posted: Mon Jan 27, 2020 7:08 pm
by PREETHI
hi,mrtools, kindly add Time shift option to this indicator.[ Eg. 0=starting of the day.]

Re: MT4 Indicator requests and ideas

Posted: Mon Jan 27, 2020 10:25 pm
by ARTAKHEH
tommo78 wrote: Mon Jan 27, 2020 4:18 pm

What indicator is in this picture Fariborz787

Cheers
Hello my friend
I don't know
red and green line
below window
Something like a momentum

Re: MT4 Indicator requests and ideas

Posted: Tue Jan 28, 2020 1:59 am
by rogerha
Can I ask for some help please from any coders out there. I have attempted to add upper and Lower Bollinger bands to the Linear Momentum indicator, so that they display and can be captured in usable buffers.

I have done better than I thought, since I am not a coder and arrays confuse me, but where I am stuck is that only the most current bar displays accurate values for the BBands and for the life of me I can't work out way. I somebody could spare me 5 minutes to point out the error of my ways I would be grateful. From testing this manually for a couple of weeks it is very helpful for identifying breakouts.

Re: MT4 Indicator requests and ideas

Posted: Tue Jan 28, 2020 3:18 am
by pacois
rogerha wrote: Tue Jan 28, 2020 1:59 am Can I ask for some help please from any coders out there. I have attempted to add upper and Lower Bollinger bands to the Linear Momentum indicator, so that they display and can be captured in usable buffers.

I have done better than I thought, since I am not a coder and arrays confuse me, but where I am stuck is that only the most current bar displays accurate values for the BBands and for the life of me I can't work out way. I somebody could spare me 5 minutes to point out the error of my ways I would be grateful. From testing this manually for a couple of weeks it is very helpful for identifying breakouts.
hello, try, it would need a more current encoding,,it takes a long time to load the indicator ! MrTools I hope it will help you.

Re: MT4 Indicator requests and ideas

Posted: Tue Jan 28, 2020 4:58 am
by mrtools
rogerha wrote: Tue Jan 28, 2020 1:59 am Can I ask for some help please from any coders out there. I have attempted to add upper and Lower Bollinger bands to the Linear Momentum indicator, so that they display and can be captured in usable buffers.

I have done better than I thought, since I am not a coder and arrays confuse me, but where I am stuck is that only the most current bar displays accurate values for the BBands and for the life of me I can't work out way. I somebody could spare me 5 minutes to point out the error of my ways I would be grateful. From testing this manually for a couple of weeks it is very helpful for identifying breakouts.
Maybe this one.

Re: MT4 Indicator requests and ideas

Posted: Tue Jan 28, 2020 5:56 am
by rogerha
mrtools wrote: Tue Jan 28, 2020 4:58 am

Maybe this one.
mrtools, Pacois, thanks you so much for a quick response. Looking at what you have done, I was close, and I am not quite sure of the relevance rates_total variable so I will spend a bit of time understanding it now that I can see what I was doing wrong.

Thanks again guys.

Re: MT4 Indicator requests and ideas

Posted: Wed Jan 29, 2020 11:48 am
by kingzboleto
hi everyone hope all of u fine and having nice and green days with trading
mr tools and all the staff cold someone make VWAP indicator with bands
i know the reply its gone be there is vwap bands but sorry that its just BBands
vwap bands dont change when you change the time frame its still in the same place and levels vwap its nots MA OR EMA
its here in the pics the true VWAP and how it work so cold you please mrtools make something like that for use in mt4 with bands

Re: MT4 Indicator requests and ideas

Posted: Wed Jan 29, 2020 1:14 pm
by kingzboleto
kingzboleto wrote: Wed Jan 29, 2020 11:48 am hi everyone hope all of u fine and having nice and green days with trading
mr tools and all the staff cold someone make VWAP indicator with bands
i know the reply its gone be there is vwap bands but sorry that its just BBands
vwap bands dont change when you change the time frame its still in the same place and levels vwap its nots MA OR EMA
its here in the pics the true VWAP and how it work so cold you please mrtools make something like that for use in mt4 with bands
and that how its in tradingview im talking about bands dear

study("VWAP Stdev Bands v2", overlay=true)
devUp1 = input(2, title="Stdev above (1)")
devDn1 = input(2, title="Stdev below (1)")

devUp2 = input(1.28, title="Stdev above (2)")
devDn2 = input(1.28, title="Stdev below (2)")

devUp3 = input(3.09, title="Stdev above (3)")
devDn3 = input(3.09, title="Stdev below (3)")

showDv2 = input(false, type=bool, title="Show second group of bands?")
showDv3 = input(false, type=bool, title="Show third group of bands?")

showPrevVWAP = input(false, type=bool, title="Show previous VWAP close")

start = 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/volumesum
dev = sqrt(max(v2sum/volumesum - myvwap*myvwap, 0))

plot(myvwap, title="VWAP", color=green)
plot(myvwap + devUp1 * dev, title="VWAP Upper", color=red)
plot(myvwap - devDn1 * dev, title="VWAP Lower", color=red)

plot(showDv2 ? myvwap + devUp2 * dev : na, title="VWAP Upper (2)")
plot(showDv2 ? myvwap - devDn2 * dev : na, title="VWAP Lower (2)")

plot(showDv3 ? myvwap + devUp3 * dev : na, title="VWAP Upper (3)", color=teal)
plot(showDv3 ? myvwap - devDn3 * dev : na, title="VWAP Lower (3)", color=teal)

prevwap = iff(newSession, myvwap[1], prevwap[1])
plot(showPrevVWAP ? prevwap : na, style=circles, color=close > prevwap ? green : red)

Re: MT4 Indicator requests and ideas

Posted: Thu Jan 30, 2020 12:51 am
by simontw
Hello everyone. First post in this thread so I hope I am abiding by all rules.

I have been looking at the IBS RSI CCI V3.1 arrows.

I am wondering if:

It can be made non repainting
alerts can be added

I have attached below.

Thanks
Simon

Re: MT4 Indicator requests and ideas

Posted: Thu Jan 30, 2020 4:07 am
by mrtools
simontw wrote: Thu Jan 30, 2020 12:51 am Hello everyone. First post in this thread so I hope I am abiding by all rules.

I have been looking at the IBS RSI CCI V3.1 arrows.

I am wondering if:

It can be made non repainting
alerts can be added

I have attached below.

Thanks
Simon
Can't tell in the code where it would repaint, has it repainted on you?