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
15132Hello 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
15133There is one here attach/file/3410914jonnyfx4711 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
- These users thanked the author mrtools for the post:
- jonnyfx4711
Re: MT4 Indicator requests and ideas
15134That 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
15135Don't have any idea how to convert that one, sorry.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.
- These users thanked the author mrtools for the post:
- jonnyfx4711
Re: MT4 Indicator requests and ideas
15136Hello,
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)
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
15137Code wise for the most part just looks like a bunch of different ma's an idea how to trade it?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)
Re: MT4 Indicator requests and ideas
15139I believe you trade it in combination with the "Hoffman's IRB (Inventory Retracement Bar)" - trend followingmrtools 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?
viewtopic.php?f=579496&t=8474716
Re: MT4 Indicator requests and ideas
15140Hey, would it be possible to add "Volatility valid/low" text for that indicator, same way it is in my other subwindow?
Above green MA = Volatility valid
Underneath green MA = Volatility low
Above green MA = Volatility valid
Underneath green MA = Volatility low
You cannot solve a problem from the same consciousness that created it. You must learn to see the world anew