Page 1514 of 2042

Re: MT4 Indicator requests and ideas

Posted: Tue Mar 15, 2022 2:57 pm
by mrtools
thomdel wrote: Tue Mar 15, 2022 2:44 pm Respected Sir,
A Gentle Reminder to have a look at this :

Request you to Please see this, this link may help.
If we Google : forexfactory recent-candles-indicator

If this Space( GAP ) Code Logic from this EA on forex factory can be applied to Thick Wick Indicator.

Thanks. Thanks. Thanks.
To be honest have no idea how to do this, sorry.

Re: MT4 Indicator requests and ideas

Posted: Tue Mar 15, 2022 9:22 pm
by Msquared
mrtools wrote: Tue Mar 15, 2022 2:56 pm Think it should do that now if alertsOnCurrent = false.
I tested the “alertsoncurrent” function in the live market and it alerts every instance the candle goes above the fractal line even while the candle is still open. Not when it’s completely opened and closed. The reason I need for the alerts to come on the first candle that completely opens and closes above the high line and below the low line is to avoid false break outs and much as possible . I strictly trade breakout and this would tremendously reduce my drawdown and help eliminate bad trades. This is the last piece of a system I’m developing that I’ll share with the forum once completed. Thank you Mr Tools. 🙏🏽

Re: MT4 Indicator requests and ideas

Posted: Thu Mar 17, 2022 3:23 am
by jonnyfx4711
mrtools wrote: Sat Mar 12, 2022 8:38 am There are some mtf versions in the link I provided.

Hello Mrtools can you please convert this mt5 indicator to mt4 i will greatly appreciate it if so thank you mrtools for all that you have contributed...


Re: MT4 Indicator requests and ideas

Posted: Thu Mar 17, 2022 8:34 am
by mrtools
jonnyfx4711 wrote: Thu Mar 17, 2022 3:23 am Hello Mrtools can you please convert this mt5 indicator to mt4 i will greatly appreciate it if so thank you mrtools for all that you have contributed...


AM_Fractal_OrderBlock_Share (6).ex5


AM_Fractal_OrderBlock_Share (14).mq5
There is one here attach/file/3410914

Re: MT4 Indicator requests and ideas

Posted: Thu Mar 17, 2022 8:43 am
by jonnyfx4711
mrtools wrote: Thu Mar 17, 2022 8:34 am There is one here attach/file/3410914

That indicator isn't converted it has been messed with to the point that i cannot use it and doesn't work like the indicator I'm kindly asking sir to be converted, please.

Re: MT4 Indicator requests and ideas

Posted: Thu Mar 17, 2022 10:51 am
by mrtools
jonnyfx4711 wrote: Thu Mar 17, 2022 8:43 am That indicator isn't converted it has been messed with to the point that i cannot use it and doesn't work like the indicator I'm kindly asking sir to be converted, please.
Don't have any idea how to convert that one, sorry.

Re: MT4 Indicator requests and ideas

Posted: Thu Mar 17, 2022 9:31 pm
by Henk13
Hello,

Would it be possible to create a MT4 indicator for "Rob Hoffman Overlay" setup?
Here is the tradingview code for the indicator.
Thanks.

// Created By UCSGEARS
// Based on Videos from youtube, by Rob Hoffman

study("Rob Hoffman - Overlay Set", shorttitle = "RH - MAs", overlay = true)

a = sma(close,3)
b = sma(close,5)

c = ema(close,18)
d = ema(close,20)

e = sma(close,50)
f = sma(close,89)
g = ema(close,144)
h = sma(close,200)

k = ema(close,35)
r = rma(tr,35)
ku = k + r*0.5
kl = k - r*0.5

plot(a, title = "Fast Speed Line", linewidth = 2, color = #0000FF)
plot(b, title = "Slow Speed Line", linewidth = 2, color = fuchsia)
plot(c, title = "Fast Primary Trend Line", linewidth = 3, color = #00FF00)
plot(d, title = "Slow Primary Trend Line", linewidth = 3, color = #000000)
plot(e, title = "Trend Line - 1", linewidth = 3, color = #0000FF, style = circles)
plot(f, title = "Trend Line - 2", linewidth = 3, color = #20B2AA)
plot(g, title = "Trend Line - 3", linewidth = 3, color = #FF4500)
plot(h, title = "Trend Line - 4", linewidth = 3, color = fuchsia)

plot(k, title = "No Trend Zone - Midline", linewidth = 2, color = #3CB371)
plot(ku, title = "No Trend Zone - Upperline", linewidth = 2, color = #3CB371)
plot(kl, title = "No Trend Zone - Lowerline", linewidth = 2, color = #3CB371)

Re: MT4 Indicator requests and ideas

Posted: Thu Mar 17, 2022 11:20 pm
by mrtools
Henk13 wrote: Thu Mar 17, 2022 9:31 pm Hello,

Would it be possible to create a MT4 indicator for "Rob Hoffman Overlay" setup?
Here is the tradingview code for the indicator.
Thanks.

// Created By UCSGEARS
// Based on Videos from youtube, by Rob Hoffman

study("Rob Hoffman - Overlay Set", shorttitle = "RH - MAs", overlay = true)

a = sma(close,3)
b = sma(close,5)

c = ema(close,18)
d = ema(close,20)

e = sma(close,50)
f = sma(close,89)
g = ema(close,144)
h = sma(close,200)

k = ema(close,35)
r = rma(tr,35)
ku = k + r*0.5
kl = k - r*0.5

plot(a, title = "Fast Speed Line", linewidth = 2, color = #0000FF)
plot(b, title = "Slow Speed Line", linewidth = 2, color = fuchsia)
plot(c, title = "Fast Primary Trend Line", linewidth = 3, color = #00FF00)
plot(d, title = "Slow Primary Trend Line", linewidth = 3, color = #000000)
plot(e, title = "Trend Line - 1", linewidth = 3, color = #0000FF, style = circles)
plot(f, title = "Trend Line - 2", linewidth = 3, color = #20B2AA)
plot(g, title = "Trend Line - 3", linewidth = 3, color = #FF4500)
plot(h, title = "Trend Line - 4", linewidth = 3, color = fuchsia)

plot(k, title = "No Trend Zone - Midline", linewidth = 2, color = #3CB371)
plot(ku, title = "No Trend Zone - Upperline", linewidth = 2, color = #3CB371)
plot(kl, title = "No Trend Zone - Lowerline", linewidth = 2, color = #3CB371)
Code wise for the most part just looks like a bunch of different ma's an idea how to trade it?

Re: MT4 Indicator requests and ideas

Posted: Thu Mar 17, 2022 11:20 pm
by whyhui
hello,anyone know this indicator?

Re: MT4 Indicator requests and ideas

Posted: Fri Mar 18, 2022 2:14 am
by Henk13
mrtools wrote: Thu Mar 17, 2022 11:20 pm Code wise for the most part just looks like a bunch of different ma's an idea how to trade it?
I believe you trade it in combination with the "Hoffman's IRB (Inventory Retracement Bar)" - trend following
viewtopic.php?f=579496&t=8474716