Re: Already Converted TradingView Indicators to MT4 Indicators

341
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 :Rofl: :Rofl: :Rofl:
Same here man scrolling down I was like when does this end bro.
These users thanked the author Jimmy for the post:
Jedidiah
Myfxbook live trading results 📊

List of our most powerful reversal indicators + Guide to the "All Averages" Filters (ADXvma, Laguerre etc.)
Fibonacci numbers for indicator settings + How to draw Fibonacci Extensions + How to draw Support & Resistance


Re: Already Converted TradingView Indicators to MT4 Indicators

342
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.
Image
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 :D

Maybe I posted twice, in which case I apologize in advance...

thank you very much!!

Re: Already Converted TradingView Indicators to MT4 Indicators

343
RodrigoRT7 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 :D

Maybe I posted twice, in which case I apologize in advance...

thank you very much!!
Follow The Line indicator with MTF (Multi-timeframe) mode

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

344
mrtools wrote: Wed Dec 06, 2023 4:26 am Mtf added. How are you using this in your trading?
Image
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 RodrigoRT7 for the post (total 3):
mrtools, kenshin281180#, Jimmy

Re: Already Converted TradingView Indicators to MT4 Indicators

345
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!!
Good Sir would it be possible for you to screenshot your indicator list and the settings for the psar you mentioned? Thanks in advance
These users thanked the author kenshin281180# for the post:
RodrigoRT7


Re: Already Converted TradingView Indicators to MT4 Indicators

347
Request:
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

Re: Already Converted TradingView Indicators to MT4 Indicators

348
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!!
That is quite a unique setup you got, do you use M30 as your main chart?
These users thanked the author opita for the post:
RodrigoRT7
Cheers,

Opita

Re: Already Converted TradingView Indicators to MT4 Indicators

350
RTI (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..
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?
xard777 wrote: Sat Jul 29, 2023 8:47 am Have a great weekend everyone...
Xard777
Image