Page 40 of 71

Re: Honje's collection of indicators, strategies and trading journals

Posted: Wed Aug 03, 2022 1:56 pm
by Banzai
honje19960321 wrote: Wed Aug 03, 2022 1:00 pm Seems to be especially effective for range-bound trends
Don't buy this one.
Here's the Pinescript code. We can convert to MT4.

Code: Select all

//@version=4
study(title='Bermaui Deviation Percent', shorttitle='BDP', overlay=false)

//originally created by Muhammad Elbermawi
//https://www.mql5.com/en/blogs/post/718182

//Inputs
length = input(20)
src = input(close)

//Bermaui Deviation Percent
basis = sma(src, length)
dev = stdev(basis, length)
hh = highest(dev, length)
ll = lowest(dev, length)
bdp = ((hh - dev) / (hh - ll))*100

//Color Conditions
bull = (bdp < 90) and (src > basis)
bear = (bdp < 90) and (src < basis)
lowVolatility = bdp > 90
col = bear ? color.red : bull ? color.blue : lowVolatility ? color.white : na

//Plots
hline(90, color=color.white, linestyle=hline.style_dashed)
hline(10, color=color.white, linestyle=hline.style_dashed)
plot(bdp, color=col, linewidth=3)

Re: Honje's collection of indicators, strategies and trading journals

Posted: Wed Aug 03, 2022 3:14 pm
by Jedidiah
Banzai wrote: Wed Aug 03, 2022 1:56 pm Don't buy this one.
Here's the Pinescript code. We can convert to MT4.

Code: Select all

//@version=4
study(title='Bermaui Deviation Percent', shorttitle='BDP', overlay=false)

//originally created by Muhammad Elbermawi
//https://www.mql5.com/en/blogs/post/718182

//Inputs
length = input(20)
src = input(close)

//Bermaui Deviation Percent
basis = sma(src, length)
dev = stdev(basis, length)
hh = highest(dev, length)
ll = lowest(dev, length)
bdp = ((hh - dev) / (hh - ll))*100

//Color Conditions
bull = (bdp < 90) and (src > basis)
bear = (bdp < 90) and (src < basis)
lowVolatility = bdp > 90
col = bear ? color.red : bull ? color.blue : lowVolatility ? color.white : na

//Plots
hline(90, color=color.white, linestyle=hline.style_dashed)
hline(10, color=color.white, linestyle=hline.style_dashed)
plot(bdp, color=col, linewidth=3)
Wow, Really?
I almost bought it on impulse.
Looking forward to our MT4 release
Thanks Banzai

Re: Honje's collection of indicators, strategies and trading journals

Posted: Thu Aug 04, 2022 1:59 am
by Jedidiah
I'll try it first. ;)

Re: Honje's collection of indicators, strategies and trading journals

Posted: Thu Aug 04, 2022 2:08 am
by Jedidiah

Re: Honje's collection of indicators, strategies and trading journals

Posted: Thu Aug 04, 2022 2:08 am
by Jedidiah

Re: Honje's collection of indicators, strategies and trading journals

Posted: Thu Aug 04, 2022 2:14 am
by shinnosuke
chickensword wrote: Wed Aug 03, 2022 8:58 am try beatlemania's template with renko, you'll never be disappointed again lol
Image
Hi bro. Which one beatlemania's version we talk about? ;)
Thank you.

Re: Honje's collection of indicators, strategies and trading journals

Posted: Thu Aug 04, 2022 2:17 am
by Jedidiah
shinnosuke wrote: Thu Aug 04, 2022 2:14 am Hi bro. Which one beatlemania's version we talk about? ;)
Thank you.
Looks like XU-HYBRID V4.0

Re: Honje's collection of indicators, strategies and trading journals

Posted: Thu Aug 04, 2022 2:36 am
by Jedidiah
;)

Re: Honje's collection of indicators, strategies and trading journals

Posted: Thu Aug 04, 2022 3:41 am
by Chickenspicy
shinnosuke wrote: Thu Aug 04, 2022 2:14 am Hi bro. Which one beatlemania's version we talk about? ;)
Thank you.
4.0

try this one too

Re: Honje's collection of indicators, strategies and trading journals

Posted: Thu Aug 04, 2022 4:24 am
by Chickenspicy
the trick is having accurate renko chart this is closest one i find it ea