Same here man scrolling down I was like when does this end bro.BeatlemaniaSA wrote: Fri Nov 03, 2023 2:40 am Haha, yeah my index finger got a bit of a workout on the scroll wheel of my mouse with that post![]()
![]()
![]()
Re: Already Converted TradingView Indicators to MT4 Indicators
342Hello Mr Tools, how are you? I had the impression I mentioned about this indicator before, but I didn't find my own post.mrtools wrote: Sat Sep 02, 2023 8:47 am Follow The Line indicator + Angle Of Attack for MT4
Not really sure how close to the TradingView versions these are, but made a Follow the line and an angle of follow the line, seems to work ok, just not sure how close to the originals these are.
I would like to suggest the MTF function in this indicator and the inclusion of new averages if possible, it has a similar behavior to the half trend

Maybe I posted twice, in which case I apologize in advance...
thank you very much!!
Re: Already Converted TradingView Indicators to MT4 Indicators
343Follow The Line indicator with MTF (Multi-timeframe) modeRodrigoRT7 wrote: Tue Dec 05, 2023 2:43 pm Hello Mr Tools, how are you? I had the impression I mentioned about this indicator before, but I didn't find my own post.
I would like to suggest the MTF function in this indicator and the inclusion of new averages if possible, it has a similar behavior to the half trend
Maybe I posted twice, in which case I apologize in advance...
thank you very much!!
Mtf added. How are you using this in your trading?
- These users thanked the author mrtools for the post (total 7):
- RodrigoRT7, kvak, talaate, Jimmy, ParallelNative, vvFish, Oopsie
Re: Already Converted TradingView Indicators to MT4 Indicators
344Thank you very much, Mr tools! This graph was confusing because it is just a test graph. But as a rule of thumb I use the 2 X MA Psar (candles) with Follow the line or half trend as a secondary confirmation indicator. Also, I really like STC as a primary indicator. The FTL averaged by Jurik default settings is the 2xMa PSAR at 7 X 21 EMA (H1) PSAR Jurik. Thank you very much for this indicator!!
- These users thanked the author RodrigoRT7 for the post (total 3):
- mrtools, kenshin281180#, Jimmy
Re: Already Converted TradingView Indicators to MT4 Indicators
345Good Sir would it be possible for you to screenshot your indicator list and the settings for the psar you mentioned? Thanks in advanceRodrigoRT7 wrote: Wed Dec 06, 2023 4:41 am Thank you very much, Mr tools! This graph was confusing because it is just a test graph. But as a rule of thumb I use the 2 X MA Psar (candles) with Follow the line or half trend as a secondary confirmation indicator. Also, I really like STC as a primary indicator. The FTL averaged by Jurik default settings is the 2xMa PSAR at 7 X 21 EMA (H1) PSAR Jurik. Thank you very much for this indicator!!
- These users thanked the author kenshin281180# for the post:
- RodrigoRT7
Re: Already Converted TradingView Indicators to MT4 Indicators
346kenshin281180# wrote: Wed Dec 06, 2023 9:37 am Good Sir would it be possible for you to screenshot your indicator list and the settings for the psar you mentioned? Thanks in advance
for sure bro!! but STC need a lot of improvements
obs: There's no need to call me sir

- These users thanked the author RodrigoRT7 for the post (total 2):
- kenshin281180#, Jimmy
Re: Already Converted TradingView Indicators to MT4 Indicators
347Request:
Engulfing Detector https://www.tradingview.com/script/ENKp ... nd-Demand/
This is a unique engulfing indicator, which I believe catches the essence of how to trade engulfing candles.
Creating this indicator can inspire additional indicators with similar strategies.
Engulfing Detector https://www.tradingview.com/script/ENKp ... nd-Demand/
This is a unique engulfing indicator, which I believe catches the essence of how to trade engulfing candles.
Creating this indicator can inspire additional indicators with similar strategies.
Code: Select all
//@version=4
study("Engulfing Detector", overlay=true, max_bars_back=500)
maxBarsBack = 500
previousRange = open[1] - close[1]
line bullEngulfOpen = na
line bullEngulfLow = na
line bearEngulfOpen = na
line bearEngulfHigh = na
isBullEngulf = previousRange > 0 and close > open[1]
isBearEngulf = previousRange < 0 and close < open[1]
if isBullEngulf
bullEngulfOpen := line.new(bar_index - 1, open[1], bar_index, open[1], extend=extend.right, color=color.green)
bullEngulfLow := line.new(bar_index - 1, low < low[1] ? low : low[1], bar_index, low < low[1] ? low : low[1], extend=extend.right, color=color.red)
if isBearEngulf
bearEngulfOpen := line.new(bar_index - 1, open[1], bar_index, open[1], extend=extend.right, color=color.green)
bearEngulfHigh := line.new(bar_index - 1, high > high[1] ? high : high[1], bar_index, high > high[1] ? high : high[1], extend=extend.right, color=color.red)
var maxNumberOfEngulfings = 10
bullEngulfingCount = 0
for i = 1 to maxBarsBack
if not na(bullEngulfOpen[i])
if low < line.get_y1(bullEngulfLow[i])
line.delete(bullEngulfOpen[i])
line.delete(bullEngulfLow[i])
continue
if low < line.get_y1(bullEngulfOpen[i])
//line.set_x2(bullEngulfOpen[i], bar_index)
line.set_color(bullEngulfOpen[i], color.gray)
//line.set_extend(bullEngulfOpen[i], extend.none)
//line.set_x2(bullEngulfLow[i], bar_index)
line.set_color(bullEngulfLow[i], color.gray)
//line.set_extend(bullEngulfLow[i], extend.none)
bullEngulfingCount := bullEngulfingCount + 1
if bullEngulfingCount > maxNumberOfEngulfings
line.delete(bullEngulfOpen[i])
line.delete(bullEngulfLow[i])
bearEngulfingCount = 0
for i = 1 to maxBarsBack
if not na(bearEngulfOpen[i])
if high > line.get_y1(bearEngulfHigh[i])
line.delete(bearEngulfOpen[i])
line.delete(bearEngulfHigh[i])
continue
if high > line.get_y1(bearEngulfOpen[i])
//line.set_x2(bearEngulfOpen[i], bar_index)
line.set_color(bearEngulfOpen[i], color.gray)
//line.set_extend(bearEngulfOpen[i], extend.none)
//line.set_x2(bearEngulfHigh[i], bar_index)
line.set_color(bearEngulfHigh[i], color.gray)
//line.set_extend(bearEngulfHigh[i], extend.none)
bearEngulfingCount := bearEngulfingCount + 1
if bearEngulfingCount > maxNumberOfEngulfings
line.delete(bearEngulfOpen[i])
line.delete(bearEngulfHigh[i])
Cheers,
Opita
Opita
Re: Already Converted TradingView Indicators to MT4 Indicators
348That is quite a unique setup you got, do you use M30 as your main chart?RodrigoRT7 wrote: Wed Dec 06, 2023 4:41 am Thank you very much, Mr tools! This graph was confusing because it is just a test graph. But as a rule of thumb I use the 2 X MA Psar (candles) with Follow the line or half trend as a secondary confirmation indicator. Also, I really like STC as a primary indicator. The FTL averaged by Jurik default settings is the 2xMa PSAR at 7 X 21 EMA (H1) PSAR Jurik. Thank you very much for this indicator!!
- These users thanked the author opita for the post:
- RodrigoRT7
Cheers,
Opita
Opita
Re: Already Converted TradingView Indicators to MT4 Indicators
349Hello Opita!! That's right, I usually use the M15 or M30. These are the indicators I'm using in brainstorming.opita wrote: Fri Dec 08, 2023 11:41 am That is quite a unique setup you got, do you use M30 as your main chart?
I really like the avg z score also as a counter trend.
- These users thanked the author RodrigoRT7 for the post:
- opita
Re: Already Converted TradingView Indicators to MT4 Indicators
350RTI (Relative Trend Index) from TradingView for MT4
An early Christmas gift for everyone: the TradingView RTI in MT4
@mrtools @kvak
I have faith in you both.. please let us have your magic..
An early Christmas gift for everyone: the TradingView RTI in MT4
@mrtools @kvak
I have faith in you both.. please let us have your magic..
mrtools wrote: Mon Jul 31, 2023 5:27 am Coded a version, came out terrible, we have an ArraySort function in meta trader but no Array.new or Array.Push and no idea how to code around them, sorry!
kvak wrote: Sun Jul 30, 2023 7:01 pm I was trying it yesterday, but it is look that some lines in code Iam not able to convert....
TransparentTrader wrote: Wed Nov 22, 2023 7:42 am So what now? Still no chance of having this ported to MT4?
- These users thanked the author chris006 for the post (total 23):
- rudiarius, TransparentTrader, mrtools, xard777, Woodyz, sal, Ricstar_8, Jimmy, kvak, josi, Tradehunter, eduarescobar, Skyold, RodrigoRT7, Akela, ChuChu Rocket, ParallelNative, k_khan_bt, Jackson Doh, alexm, stond, RobertPoznan, gorbat